Difference between revisions of "Emacs Lisp"
Jump to navigation
Jump to search
(Beginning of a common skeleton to be used for major modes) |
|||
Line 1: | Line 1: | ||
[[Category:Lisp]] | [[Category:Lisp]] | ||
+ | |||
+ | ''(a short overview should go here)'' | ||
+ | |||
+ | = Basic setup = | ||
+ | |||
+ | = Helpful keybindings = | ||
+ | |||
+ | {| | ||
+ | | <code>M-<tab></code> | ||
+ | | complete at point | ||
+ | |- | ||
+ | | <code>C-M-q</code> | ||
+ | | indent the sexp following [[point]] | ||
+ | |- | ||
+ | | <code>C-M-x</code> | ||
+ | | evaluate the <code>defun</code> at [[point]] | ||
+ | |} | ||
+ | |||
+ | = Common customizations = | ||
+ | |||
+ | = External links = | ||
+ | |||
+ | * [http://www.gnu.org/software/emacs/manual/html_node/elisp/index.html Emacs Lisp manual] |