Difference between revisions of "Emacs Lisp"

From WikEmacs
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]

Revision as of 14:48, 26 March 2012


(a short overview should go here)

Basic setup

Helpful keybindings

M-<tab> complete at point
C-M-q indent the sexp following point
C-M-x evaluate the defun at point

Common customizations

External links