Difference between revisions of "Skeleton"

From WikEmacs
Jump to navigation Jump to search
(Skeleton: Fix typo)
(Skeleton: Fix typo)
Line 5: Line 5:
  
 
Use the below setting to insert paired characters with just a single
 
Use the below setting to insert paired characters with just a single
keystroke. For example, typing ''('' will automatically insert ''()''
+
keystroke. For example, typing ''''('''' will automatically insert
in to the buffer. Similarly typing '{' will automatically insert
+
''''()'''' in to the buffer. Similarly typing ''''{'''' will
''{}''. This setting is quite useful if you are editing
+
automatically insert ''''{}''''. This setting is quite useful if you
[[Emacs Lisp]], [[C]] etc.
+
are editing [[Emacs Lisp]], [[C]] etc.
  
 
<source lang="lisp">
 
<source lang="lisp">

Revision as of 15:01, 28 March 2012

Skeleton library can be used to create documents based on templates.

Common Customization

Use the below setting to insert paired characters with just a single keystroke. For example, typing '(' will automatically insert '()' in to the buffer. Similarly typing '{' will automatically insert '{}'. This setting is quite useful if you are editing Emacs Lisp, C etc.

(require 'skeleton)
(setq skeleton-pair t)
(global-set-key "\"" 'skeleton-pair-insert-maybe)
(global-set-key "(" 'skeleton-pair-insert-maybe)
(global-set-key "[" 'skeleton-pair-insert-maybe)
(global-set-key "{" 'skeleton-pair-insert-maybe)