-
Recent Posts
Archives
- November 2016
- April 2015
- March 2015
- February 2015
- November 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- March 2013
- July 2012
- March 2012
- December 2011
Categories
- Adobe Reader
- AUCTeX
- autopair
- blogging
- bug
- C
- cl-lib
- closure
- Common Lisp
- comparison
- dash
- debug
- documentary
- dynamic scoping
- elisp
- ELPA
- English
- entropy
- ergodic theory
- export
- exposition
- fish
- fix
- font
- gotcha
- html
- htmlize
- image
- immutable
- information theory
- Internet
- intuition
- Japanese
- javascript
- JPEG
- js2-mode
- KAIST
- keyboard
- kimchi
- Korea
- LaTeX
- lexical-binding
- lexical scoping
- LuaTeX
- managed
- measure theory
- monospace
- movie
- mutable
- namespace
- NEF
- org-mode
- package
- Photoshop
- PNG
- pointer
- portable
- prefix
- process
- Python
- rainbow-delimiters
- region
- rice
- SLIME
- special-variable
- stew
- tablet
- Ubuntu
- unicode
- Windows
- Windows 8
- wireless
- Wordpress
- XeTeX
Meta
Tag Archives: package
how to list emacs package dependencies
Table of Contents 1. how to see one-level dependencies of a package 2. how to programmatically collect the names of all the required packages for a given set of packages For now there is no command or function that recursively … Continue reading
How to choose Emacs Lisp package namespace prefix
1. background Since Emacs Lisp doesn’t provide namespaces yet, Emacs Lisp packages use prefixes as substitute for namespaces. For example, the cl-lib library uses cl as its common prefix for all of its function names (and variable names), the rx … Continue reading
how to install just one package from MELPA and not others
Table of Contents 1. background 2. installing or updating one package from MELPA 3. checking if the package is installed correctly 1. background There are two well known Emacs package archives: GNU ELPA and MELPA (well, there’s also Marmalade). The … Continue reading
how to install autopair from emacs package system
Table of Contents 1 how to install autopair 2 how to enable autopair without using require 3 how to disable autopair in some modes while keeping autopair globally on 4 further customization of autopair how to install autopair autopair is … Continue reading
how to know which archive an emacs ELPA package is from
The buffer from M-x list-packages doesn’t display which archive each package is from. M-x describe-package doesn’t either. But there is a function for it. The function is package-archive-base. For example, I use two additional ELPA archives: (require ‘package) (add-to-list ‘package-archives … Continue reading