home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / info / emacs-17 (.txt) < prev    next >
GNU Info File  |  1996-09-28  |  50KB  |  870 lines

  1. This is Info file ../info/emacs, produced by Makeinfo-1.54 from the
  2. input file emacs.texi.
  3. File: emacs,  Node: File Variables,  Prev: Locals,  Up: Variables
  4. Local Variables in Files
  5. ------------------------
  6.    A file can specify local variable values for use when you edit the
  7. file with Emacs.  Visiting the file checks for local variables
  8. specifications; it automatically makes these variables local to the
  9. buffer, and sets them to the values specified in the file.
  10.    There are two ways to specify local variable values: in the first
  11. line, or with a local variables list.  Here's how to specify them in the
  12. first line:
  13.      -*- mode: MODENAME; VAR: VALUE; ... -*-
  14. You can specify any number of variables/value pairs in this way, each
  15. pair with a colon and semicolon as shown above.  `mode: MODENAME;'
  16. specifies the major mode; this should come first in the line.  The
  17. VALUEs are not evaluated; they are used literally.  Here is an example
  18. that specifies Lisp mode and sets two variables with numeric values:
  19.      ;; -*-Mode: Lisp; fill-column: 75; comment-column: 50; -*-
  20.    A "local variables list" goes near the end of the file, in the last
  21. page.  (It is often best to put it on a page by itself.)  The local
  22. variables list starts with a line containing the string `Local
  23. Variables:', and ends with a line containing the string `End:'.  In
  24. between come the variable names and values, one set per line, as
  25. `VARIABLE: VALUE'.  The VALUEs are not evaluated; they are used
  26. literally.
  27.    Here is an example of a local variables list:
  28.      ;;; Local Variables: ***
  29.      ;;; mode:lisp ***
  30.      ;;; comment-column:0 ***
  31.      ;;; comment-start: ";;; "  ***
  32.      ;;; comment-end:"***" ***
  33.      ;;; End: ***
  34.    As you see, each line starts with the prefix `;;; ' and each line
  35. ends with the suffix ` ***'.  Emacs recognizes these as the prefix and
  36. suffix based on the first line of the list, by finding them surrounding
  37. the magic string `Local Variables:'; then it automatically discards
  38. them from the other lines of the list.
  39.    The usual reason for using a prefix and/or suffix is to embed the
  40. local variables list in a comment, so it won't confuse other programs
  41. that the file is intended as input for.  The example above is for a
  42. language where comment lines start with `;;; ' and end with `***'; the
  43. local values for `comment-start' and `comment-end' customize the rest
  44. of Emacs for this unusual syntax.  Don't use a prefix (or a suffix) if
  45. you don't need one.
  46.    Two "variable names" have special meanings in a local variables
  47. list: a value for the variable `mode' really sets the major mode, and a
  48. value for the variable `eval' is simply evaluated as an expression and
  49. the value is ignored.  `mode' and `eval' are not real variables;
  50. setting variables named `mode' and `eval' in any other context has no
  51. special meaning.  If `mode' is used in a local variables list, it
  52. should be the first entry in the list.
  53.    The start of the local variables list must be no more than 3000
  54. characters from the end of the file, and must be in the last page if the
  55. file is divided into pages.  Otherwise, Emacs will not notice it is
  56. there.  The purpose of this rule is so that a stray `Local Variables:'
  57. not in the last page does not confuse Emacs, and so that visiting a
  58. long file that is all one page and has no local variables list need not
  59. take the time to search the whole file.
  60.    You may be tempted to try to turn on Auto Fill mode with a local
  61. variable list.  That is a mistake.  The choice of Auto Fill mode or not
  62. is a matter of individual taste, not a matter of the contents of
  63. particular files.  If you want to use Auto Fill, set up major mode
  64. hooks with your `.emacs' file to turn it on (when appropriate) for you
  65. alone (*note Init File::.).  Don't try to use a local variable list
  66. that would impose your taste on everyone.
  67.    The variable `enable-local-variables' controls whether to process
  68. local variables lists, and thus gives you a chance to override them.
  69. Its default value is `t', which means do process local variables lists.
  70. If you set the value to `nil', Emacs simply ignores local variables
  71. lists.  Any other value says to query you about each local variables
  72. list, showing you the local variables list to consider.
  73.    The `eval' "variable", and certain actual variables, create a
  74. special risk; when you visit someone else's file, local variable
  75. specifications for these could affect your Emacs in arbitrary ways.
  76. Therefore, the option `enable-local-eval' controls whether Emacs
  77. processes `eval' variables, as well variables with names that end in
  78. `-hook', `-hooks', `-function' or `-functions', and certain other
  79. variables.  The three possibilities for the option's value are `t',
  80. `nil', and anything else, just as for `enable-local-variables'.  The
  81. default is `maybe', which is neither `t' nor `nil', so normally Emacs
  82. does ask for confirmation about file settings for these variables.
  83.    Use the command `normal-mode' to reset the local variables and major
  84. mode of a buffer according to the file name and contents, including the
  85. local variables list if any.  *Note Choosing Modes::.
  86. File: emacs,  Node: Keyboard Macros,  Next: Key Bindings,  Prev: Variables,  Up: Customization
  87. Keyboard Macros
  88. ===============
  89.    A "keyboard macro" is a command defined by the user to stand for
  90. another sequence of keys.  For example, if you discover that you are
  91. about to type `C-n C-d' forty times, you can speed your work by
  92. defining a keyboard macro to do `C-n C-d' and calling it with a repeat
  93. count of forty.
  94. `C-x ('
  95.      Start defining a keyboard macro (`start-kbd-macro').
  96. `C-x )'
  97.      End the definition of a keyboard macro (`end-kbd-macro').
  98. `C-x e'
  99.      Execute the most recent keyboard macro (`call-last-kbd-macro').
  100. `C-u C-x ('
  101.      Re-execute last keyboard macro, then add more keys to its
  102.      definition.
  103. `C-x q'
  104.      When this point is reached during macro execution, ask for
  105.      confirmation (`kbd-macro-query').
  106. `M-x name-last-kbd-macro'
  107.      Give a command name (for the duration of the session) to the most
  108.      recently defined keyboard macro.
  109. `M-x insert-kbd-macro'
  110.      Insert in the buffer a keyboard macro's definition, as Lisp code.
  111. `C-x C-k'
  112.      Edit a previously defined keyboard macro (`edit-kbd-macro').
  113.    Keyboard macros differ from ordinary Emacs commands in that they are
  114. written in the Emacs command language rather than in Lisp.  This makes
  115. it easier for the novice to write them, and makes them more convenient
  116. as temporary hacks.  However, the Emacs command language is not powerful
  117. enough as a programming language to be useful for writing anything
  118. intelligent or general.  For such things, Lisp must be used.
  119.    You define a keyboard macro while executing the commands which are
  120. the definition.  Put differently, as you define a keyboard macro, the
  121. definition is being executed for the first time.  This way, you can see
  122. what the effects of your commands are, so that you don't have to figure
  123. them out in your head.  When you are finished, the keyboard macro is
  124. defined and also has been, in effect, executed once.  You can then do
  125. the whole thing over again by invoking the macro.
  126. * Menu:
  127. * Basic Kbd Macro::  Defining and running keyboard macros.
  128. * Save Kbd Macro::   Giving keyboard macros names; saving them in files.
  129. * Kbd Macro Query::  Keyboard macros that do different things each use.
  130. File: emacs,  Node: Basic Kbd Macro,  Next: Save Kbd Macro,  Up: Keyboard Macros
  131. Basic Use
  132. ---------
  133.    To start defining a keyboard macro, type the `C-x (' command
  134. (`start-kbd-macro').  From then on, your keys continue to be executed,
  135. but also become part of the definition of the macro.  `Def' appears in
  136. the mode line to remind you of what is going on.  When you are
  137. finished, the `C-x )' command (`end-kbd-macro') terminates the
  138. definition (without becoming part of it!).  For example,
  139.      C-x ( M-f foo C-x )
  140. defines a macro to move forward a word and then insert `foo'.
  141.    The macro thus defined can be invoked again with the `C-x e' command
  142. (`call-last-kbd-macro'), which may be given a repeat count as a numeric
  143. argument to execute the macro many times.  `C-x )' can also be given a
  144. repeat count as an argument, in which case it repeats the macro that
  145. many times right after defining it, but defining the macro counts as
  146. the first repetition (since it is executed as you define it).
  147. Therefore, giving `C-x )' an argument of 4 executes the macro
  148. immediately 3 additional times.  An argument of zero to `C-x e' or `C-x
  149. )' means repeat the macro indefinitely (until it gets an error or you
  150. type `C-g').
  151.    If you wish to repeat an operation at regularly spaced places in the
  152. text, define a macro and include as part of the macro the commands to
  153. move to the next place you want to use it.  For example, if you want to
  154. change each line, you should position point at the start of a line, and
  155. define a macro to change that line and leave point at the start of the
  156. next line.  Then repeating the macro will operate on successive lines.
  157.    After you have terminated the definition of a keyboard macro, you
  158. can add to the end of its definition by typing `C-u C-x ('.  This is
  159. equivalent to plain `C-x (' followed by retyping the whole definition
  160. so far.  As a consequence it re-executes the macro as previously
  161. defined.
  162.    You can use function keys in a keyboard macro, just like keyboard
  163. keys.  You can even use mouse events, but be careful about that: when
  164. the macro replays the mouse event, it uses the original mouse position
  165. of that event, the position that the mouse had while you were defining
  166. the macro.  The effect of this may be hard to predict.  (Using the
  167. current mouse position would be even less predictable.)
  168.    One thing that doesn't always work well in a keyboard macro is the
  169. command `C-M-c' (`exit-recursive-edit').  When this command exits a
  170. recursive edit that started within the macro, it works as you'd expect.
  171. But if it exits a recursive edit that started before you invoked the
  172. keyboard macro, it also necessarily exits the keyboard macro as part of
  173. the process.
  174.    You can edit a keyboard macro already defined by typing `C-x C-k'
  175. (`edit-kbd-macro').  Follow that with the keyboard input that you would
  176. use to invoke the macro--`C-x e' or `M-x NAME' or some other key
  177. sequence.  This formats the macro definition in a buffer and enters a
  178. specialized major mode for editing it.  Type `C-h m' once in that
  179. buffer to display details of how to edit the macro.  When you are
  180. finished editing, type `C-c C-c'.
  181. File: emacs,  Node: Save Kbd Macro,  Next: Kbd Macro Query,  Prev: Basic Kbd Macro,  Up: Keyboard Macros
  182. Naming and Saving Keyboard Macros
  183. ---------------------------------
  184.    If you wish to save a keyboard macro for longer than until you
  185. define the next one, you must give it a name using `M-x
  186. name-last-kbd-macro'.  This reads a name as an argument using the
  187. minibuffer and defines that name to execute the macro.  The macro name
  188. is a Lisp symbol, and defining it in this way makes it a valid command
  189. name for calling with `M-x' or for binding a key to with
  190. `global-set-key' (*note Keymaps::.).  If you specify a name that has a
  191. prior definition other than another keyboard macro, an error message is
  192. printed and nothing is changed.
  193.    Once a macro has a command name, you can save its definition in a
  194. file.  Then it can be used in another editing session.  First, visit
  195. the file you want to save the definition in.  Then use this command:
  196.      M-x insert-kbd-macro RET MACRONAME RET
  197. This inserts some Lisp code that, when executed later, will define the
  198. same macro with the same definition it has now.  (You need not
  199. understand Lisp code to do this, because `insert-kbd-macro' writes the
  200. Lisp code for you.)  Then save the file.  You can load the file later
  201. with `load-file' (*note Lisp Libraries::.).  If the file you save in is
  202. your init file `~/.emacs' (*note Init File::.) then the macro will be
  203. defined each time you run Emacs.
  204.    If you give `insert-kbd-macro' a numeric argument, it makes
  205. additional Lisp code to record the keys (if any) that you have bound to
  206. the keyboard macro, so that the macro will be reassigned the same keys
  207. when you load the file.
  208. File: emacs,  Node: Kbd Macro Query,  Prev: Save Kbd Macro,  Up: Keyboard Macros
  209. Executing Macros with Variations
  210. --------------------------------
  211.    Using `C-x q' (`kbd-macro-query'), you can get an effect similar to
  212. that of `query-replace', where the macro asks you each time around
  213. whether to make a change.  While defining the macro, type `C-x q' at
  214. the point where you want the query to occur.  During macro definition,
  215. the `C-x q' does nothing, but when you run the macro later, `C-x q'
  216. asks you interactively whether to continue.
  217.    The valid responses when `C-x q' asks are SPC (or `y'), DEL (or
  218. `n'), ESC (or `q'), `C-l' and `C-r'.  The answers are the same as in
  219. `query-replace', though not all of the `query-replace' options are
  220. meaningful.
  221.    These responses include SPC to continue, and DEL to skip the
  222. remainder of this repetition of the macro and start right away with the
  223. next repetition.  ESC means to skip the remainder of this repetition
  224. and cancel further repetitions.  `C-l' redraws the screen and asks you
  225. again for a character to say what to do.
  226.    `C-r' enters a recursive editing level, in which you can perform
  227. editing which is not part of the macro.  When you exit the recursive
  228. edit using `C-M-c', you are asked again how to continue with the
  229. keyboard macro.  If you type a SPC at this time, the rest of the macro
  230. definition is executed.  It is up to you to leave point and the text in
  231. a state such that the rest of the macro will do what you want.
  232.    `C-u C-x q', which is `C-x q' with a numeric argument, performs a
  233. completely different function.  It enters a recursive edit reading
  234. input from the keyboard, both when you type it during the definition of
  235. the macro, and when it is executed from the macro.  During definition,
  236. the editing you do inside the recursive edit does not become part of
  237. the macro.  During macro execution, the recursive edit gives you a
  238. chance to do some particularized editing on each repetition.  *Note
  239. Recursive Edit::.
  240. File: emacs,  Node: Key Bindings,  Next: Keyboard Translations,  Prev: Keyboard Macros,  Up: Customization
  241. Customizing Key Bindings
  242. ========================
  243.    This section describes "key bindings" which map keys to commands,
  244. and the "keymaps" which record key bindings.  It also explains how to
  245. customize key bindings.
  246.    Recall that a command is a Lisp function whose definition provides
  247. for interactive use.  Like every Lisp function, a command has a function
  248. name which usually consists of lower case letters and hyphens.
  249. * Menu:
  250. * Keymaps::          Generalities.  The global keymap.
  251. * Prefix Keymaps::   Keymaps for prefix keys.
  252. * Local Keymaps::    Major and minor modes have their own keymaps.
  253. * Minibuffer Maps::  The minibuffer uses its own local keymaps.
  254. * Rebinding::        How to redefine one key's meaning conveniently.
  255. * Init Rebinding::   Rebinding keys with your init file, `.emacs'.
  256. * Function Keys::    Rebinding terminal function keys.
  257. * Named ASCII Chars::Distinguishing TAB from `C-i', and so on.
  258. * Mouse Buttons::    Rebinding mouse buttons in Emacs.
  259. * Disabling::        Disabling a command means confirmation is required
  260.                        before it can be executed.  This is done to protect
  261.                        beginners from surprises.
  262. File: emacs,  Node: Keymaps,  Next: Prefix Keymaps,  Up: Key Bindings
  263. Keymaps
  264. -------
  265.    The bindings between key sequences and command functions are recorded
  266. in data structures called "keymaps".  Emacs has many of these, each
  267. used on particular occasions.
  268.    Recall that a "key sequence" ("key", for short) is a sequence of
  269. "input events" that have a meaning as a unit.  Input events include
  270. characters, function keys and mouse buttons--all the inputs that you
  271. can send to the computer with your terminal.  A key sequence gets its
  272. meaning from its "binding", which says what command it runs.  The
  273. function of keymaps is to record these bindings.
  274.    The "global" keymap is the most important keymap because it is
  275. always in effect.  The global keymap defines keys for Fundamental mode;
  276. most of these definitions are common to most or all major modes.  Each
  277. major or minor mode can have its own keymap which overrides the global
  278. definitions of some keys.
  279.    For example, a self-inserting character such as `g' is
  280. self-inserting because the global keymap binds it to the command
  281. `self-insert-command'.  The standard Emacs editing characters such as
  282. `C-a' also get their standard meanings from the global keymap.
  283. Commands to rebind keys, such as `M-x global-set-key', actually work by
  284. storing the new binding in the proper place in the global map.  *Note
  285. Rebinding::.
  286.    Meta characters work differently; Emacs translates each Meta
  287. character into a pair of characters starting with ESC.  When you type
  288. the character `M-a' in a key sequence, Emacs replaces it with `ESC a'.
  289. A meta key comes in as a single input event, but becomes two events for
  290. purposes of key bindings.  The reason for this is historical, and we
  291. might change it someday.
  292.    Most modern keyboards have function keys as well as character keys.
  293. Function keys send input events just as character keys do, and keymaps
  294. can have bindings for them.
  295.    On many terminals, typing a function key actually sends the computer
  296. a sequence of characters; the precise details of the sequence depends on
  297. which function key and on the model of terminal you are using.  (Often
  298. the sequence starts with `ESC ['.)  If Emacs understands your terminal
  299. type properly, it recognizes the character sequences forming function
  300. keys wherever they occur in a key sequence (not just at the beginning).
  301. Thus, for most purposes, you can pretend the function keys reach Emacs
  302. directly and ignore their encoding as character sequences.
  303.    Mouse buttons also produce input events.  These events come with
  304. other data--the window and position where you pressed or released the
  305. button, and a time stamp.  But only the choice of button matters for key
  306. bindings; the other data matters only if a command looks at it.
  307. (Commands designed for mouse invocation usually do look at the other
  308. data.)
  309.    A keymap records definitions for single events.  Interpreting a key
  310. sequence of multiple events involves a chain of keymaps.  The first
  311. keymap gives a definition for the first event; this definition is
  312. another keymap, which is used to look up the second event in the
  313. sequence, and so on.
  314.    Key sequences can mix function keys and characters.  For example,
  315. `C-x SELECT' makes sense.  If you make SELECT a prefix key, then
  316. `SELECT C-n' makes sense.  You can even mix mouse events with keyboard
  317. events, but we recommend against it, because such sequences are
  318. inconvenient to type in.
  319. File: emacs,  Node: Prefix Keymaps,  Next: Local Keymaps,  Prev: Keymaps,  Up: Key Bindings
  320. Prefix Keymaps
  321. --------------
  322.    A prefix key such as `C-x' or ESC has its own keymap, which holds
  323. the definition for the event that immediately follows that prefix.
  324.    The definition of a prefix key is usually the keymap to use for
  325. looking up the following event.  The definition can also be a Lisp
  326. symbol whose function definition is the following keymap; the effect is
  327. the same, but it provides a command name for the prefix key that can be
  328. used as a description of what the prefix key is for.  Thus, the binding
  329. of `C-x' is the symbol `Ctl-X-Prefix', whose function definition is the
  330. keymap for `C-x' commands.  The definitions of `C-c', `C-x', `C-h' and
  331. ESC as prefix keys appear in the global map, so these prefix keys are
  332. always available.
  333.    Some prefix keymaps are stored in variables with names:
  334.    * `ctl-x-map' is the variable name for the map used for characters
  335.      that follow `C-x'.
  336.    * `help-map' is for characters that follow `C-h'.
  337.    * `esc-map' is for characters that follow ESC.  Thus, all Meta
  338.      characters are actually defined by this map.
  339.    * `ctl-x-4-map' is for characters that follow `C-x 4'.
  340.    * `mode-specific-map' is for characters that follow `C-c'.
  341. File: emacs,  Node: Local Keymaps,  Next: Minibuffer Maps,  Prev: Prefix Keymaps,  Up: Key Bindings
  342. Local Keymaps
  343. -------------
  344.    So far we have explained the ins and outs of the global map.  Major
  345. modes customize Emacs by providing their own key bindings in "local
  346. keymaps".  For example, C mode overrides TAB to make it indent the
  347. current line for C code.  Portions of text in the buffer can specify
  348. their own keymaps to substitute for the keymap of the buffer's major
  349. mode.
  350.    Minor modes can also have local keymaps.  Whenever a minor mode is
  351. in effect, the definitions in its keymap override both the major mode's
  352. local keymap and the global keymap.
  353.    The local keymaps for Lisp mode, C mode, and several other major
  354. modes always exist even when not in use.  These are kept in variables
  355. named `lisp-mode-map', `c-mode-map', and so on.  For major modes less
  356. often used, the local keymap is normally constructed only when the mode
  357. is used for the first time in a session.  This is to save space.
  358.    All minor mode keymaps are created in advance.  There is no way to
  359. defer their creation until the first time the minor mode is enabled.
  360.    A local keymap can locally redefine a key as a prefix key by defining
  361. it as a prefix keymap.  If the key is also defined globally as a prefix,
  362. then its local and global definitions (both keymaps) effectively
  363. combine: both of them are used to look up the event that follows the
  364. prefix key.  Thus, if the mode's local keymap defines `C-c' as another
  365. keymap, and that keymap defines `C-z' as a command, this provides a
  366. local meaning for `C-c C-z'.  This does not affect other sequences that
  367. start with `C-c'; if those sequences don't have their own local
  368. bindings, their global bindings remain in effect.
  369.    Another way to think of this is that Emacs handles a multi-event key
  370. sequence by looking in several keymaps, one by one, for a binding of the
  371. whole key sequence.  First it checks the minor mode keymaps for minor
  372. modes that are enabled, then it checks the major mode's keymap, and then
  373. it checks the global keymap.  This is not precisely how key lookup
  374. works, but it's good enough for understanding ordinary circumstances.
  375. File: emacs,  Node: Minibuffer Maps,  Next: Rebinding,  Prev: Local Keymaps,  Up: Key Bindings
  376. Minibuffer Keymaps
  377. ------------------
  378.    The minibuffer has its own set of local keymaps; they contain various
  379. completion and exit commands.
  380.    * `minibuffer-local-map' is used for ordinary input (no completion).
  381.    * `minibuffer-local-ns-map' is similar, except that SPC exits just
  382.      like RET.  This is used mainly for Mocklisp compatibility.
  383.    * `minibuffer-local-completion-map' is for permissive completion.
  384.    * `minibuffer-local-must-match-map' is for strict completion and for
  385.      cautious completion.
  386. File: emacs,  Node: Rebinding,  Next: Init Rebinding,  Prev: Minibuffer Maps,  Up: Key Bindings
  387. Changing Key Bindings Interactively
  388. -----------------------------------
  389.    The way to redefine an Emacs key is to change its entry in a keymap.
  390. You can change the global keymap, in which case the change is effective
  391. in all major modes (except those that have their own overriding local
  392. definitions for the same key).  Or you can change the current buffer's
  393. local map, which affects all buffers using the same major mode.
  394. `M-x global-set-key RET KEY CMD RET'
  395.      Define KEY globally to run CMD.
  396. `M-x local-set-key RET KEY CMD RET'
  397.      Define KEY locally (in the major mode now in effect) to run CMD.
  398. `M-x global-unset-key RET KEY'
  399.      Make KEY undefined in the global map.
  400. `M-x local-unset-key RET KEY'
  401.      Make KEY undefined locally (in the major mode now in effect).
  402.    For example, suppose you like to execute commands in a subshell
  403. within an Emacs buffer, instead of suspending Emacs and executing
  404. commands in your login shell.  Normally, `C-z' is bound to the function
  405. `suspend-emacs' (when not using the X Window System), but you can
  406. change `C-z' to invoke an interactive subshell within Emacs, by binding
  407. it to `shell' as follows:
  408.      M-x global-set-key RET C-z shell RET
  409. `global-set-key' reads the command name after the key.   After you
  410. press the key, a message like this appears so that you can confirm that
  411. you are binding the key you want:
  412.      Set key C-z to command:
  413.    You can redefine function keys and mouse events in the same way; just
  414. type the function key or click the mouse when it's time to specify the
  415. key to rebind.
  416.    You can rebind a key that contains more than one event in the same
  417. way.  Emacs keeps reading the key to rebind until it is a complete key
  418. (that is, not a prefix key).  Thus, if you type `C-f' for KEY, that's
  419. the end; the minibuffer is entered immediately to read CMD.  But if you
  420. type `C-x', another character is read; if that is `4', another
  421. character is read, and so on.  For example,
  422.      M-x global-set-key RET C-x 4 $ spell-other-window RET
  423. redefines `C-x 4 $' to run the (fictitious) command
  424. `spell-other-window'.
  425.    The two-character keys consisting of `C-c' followed by a letter are
  426. reserved for user customizations.  Lisp programs are not supposed to
  427. define these keys, so the bindings you make for them will be available
  428. in all major modes and will never get in the way of anything.
  429.    You can remove the global definition of a key with
  430. `global-unset-key'.  This makes the key "undefined"; if you type it,
  431. Emacs will just beep.  Similarly, `local-unset-key' makes a key
  432. undefined in the current major mode keymap, which makes the global
  433. definition (or lack of one) come back into effect in that major mode.
  434.    If you have redefined (or undefined) a key and you subsequently wish
  435. to retract the change, undefining the key will not do the job--you need
  436. to redefine the key with its standard definition.  To find the name of
  437. the standard definition of a key, go to a Fundamental mode buffer and
  438. use `C-h c'.  The documentation of keys in this manual also lists their
  439. command names.
  440.    If you want to prevent yourself from invoking a command by mistake,
  441. it is better to disable the command than to undefine the key.  A
  442. disabled command is less work to invoke when you really want to.  *Note
  443. Disabling::.
  444. File: emacs,  Node: Init Rebinding,  Next: Function Keys,  Prev: Rebinding,  Up: Key Bindings
  445. Rebinding Keys in Your Init File
  446. --------------------------------
  447.    If you have a set of key bindings that you like to use all the time,
  448. you can specify them in your `.emacs' file by using their Lisp syntax.
  449. Thus, the first `global-set-key' command in this section could be put
  450. in an `.emacs' file in either of the two following formats:
  451.      (global-set-key "\C-z" 'shell)
  452.      (global-set-key [?\C-z] 'shell)
  453. When the key sequence consists of ASCII characters and Meta-modified
  454. ASCII characters, like this one, you can write it as a string or as a
  455. vector.  The first format specifies the key sequence as a string,
  456. `"\C-z"'.  The second format uses a vector to specify the key sequence.
  457. The square brackets (`[...]') delimit the contents of the vector.  The
  458. vector in this example contains just one element, which is the integer
  459. code corresponding to `C-z'.  The question mark is the Lisp syntax for
  460. a character constant; the character must follow with no intervening
  461. spaces.
  462.    The single-quote before `shell' marks it as a constant symbol rather
  463. than a variable.  If you omit the quote, Emacs tries to evaluate
  464. `shell' immediately as a variable.  This probably causes an error; it
  465. certainly isn't what you want.
  466.    Here is another example that binds a key sequence two characters
  467. long:
  468.      (global-set-key "\C-xl" 'make-symbolic-link)
  469.      (global-set-key [?\C-x ?l] 'make-symbolic-link)
  470.    When the key sequence includes function keys or mouse button events,
  471. or non-ASCII characters such as `C-=' or `H-a', you must use a vector:
  472.      (global-set-key [?\C-=] 'make-symbolic-link)
  473.      (global-set-key [?\H-a] 'make-symbolic-link)
  474.      (global-set-key [C-H-mouse-1] 'make-symbolic-link)
  475. File: emacs,  Node: Function Keys,  Next: Named ASCII Chars,  Prev: Init Rebinding,  Up: Key Bindings
  476. Rebinding Function Keys
  477. -----------------------
  478.    Key sequences can contain function keys as well as ordinary
  479. characters.  Just as Lisp characters (actually integers) represent
  480. keyboard characters, Lisp symbols represent function keys.  If the
  481. function key has a word as its label, then that word is also the name of
  482. the corresponding Lisp symbol.  Here are the conventional Lisp names for
  483. common function keys:
  484. `left', `up', `right', `down'
  485.      Cursor arrow keys.
  486. `begin', `end', `home', `next', `prior'
  487.      Other cursor repositioning keys.
  488. `select', `print', `execute', `backtab'
  489. `insert', `undo', `redo', `clearline'
  490. `insertline', `deleteline', `insertchar', `deletechar',
  491.      Miscellaneous function keys.
  492. `f1', `f2', ... `f35'
  493.      Numbered function keys (across the top of the keyboard).
  494. `kp-add', `kp-subtract', `kp-multiply', `kp-divide'
  495. `kp-backtab', `kp-space', `kp-tab', `kp-enter'
  496. `kp-separator', `kp-decimal', `kp-equal'
  497.      Keypad keys (to the right of the regular keyboard), with names or
  498.      punctuation.
  499. `kp-0', `kp-1', ... `kp-9'
  500.      Keypad keys with digits.
  501. `kp-f1', `kp-f2', `kp-f3', `kp-f4'
  502.      Keypad PF keys.
  503.    These names are conventional, but some systems (especially when using
  504. X windows) may use different names.  To make certain what symbol is used
  505. for a given function key on your terminal, type `C-h c' followed by
  506. that key.
  507.    A key sequence which contains non-characters must be a vector rather
  508. than a string.  To write a vector, write square brackets containing the
  509. vector elements.  Write spaces to separate the elements.  If an element
  510. is a symbol, simply write the symbol's name--no delimiters or
  511. punctuation are needed.  If an element is a character, write a Lisp
  512. character constant, which is `?' followed by the character as it would
  513. appear in a string.
  514.    Thus, to bind function key `f1' to the command `rmail', write the
  515. following:
  516.      (global-set-key [f1] 'rmail)
  517. To bind the right-arrow key to the command `forward-char', you can use
  518. this expression:
  519.      (global-set-key [right] 'forward-char)
  520. This uses the Lisp syntax for a vector containing the symbol `right'.
  521. (This binding is present in Emacs by default.)
  522.    You can mix function keys and characters in a key sequence.  This
  523. example binds `C-x RIGHT' to the command `forward-page'.
  524.      (global-set-key [?\C-x right] 'forward-page)
  525. where `?\C-x' is the Lisp character constant for the character `C-x'.
  526. The vector element `right' is a symbol and therefore does not take a
  527. question mark.
  528.    You can use the modifier keys CTRL, META, HYPER, SUPER, ALT and
  529. SHIFT with function keys.  To represent these modifiers, add the
  530. strings `C-', `M-', `H-', `s-', `A-' and `S-' at the front of the
  531. symbol name.  Thus, here is how to make `Hyper-Meta-RIGHT' move forward
  532. a word:
  533.      (global-set-key [H-M-right] 'forward-word)
  534. File: emacs,  Node: Named ASCII Chars,  Next: Mouse Buttons,  Prev: Function Keys,  Up: Key Bindings
  535. Named ASCII Control Characters
  536. ------------------------------
  537.    TAB, RET, BS, LFD, ESC and DEL started out as names for certain
  538. ASCII control characters, used so often that they have special keys of
  539. their own.  Later, users found it convenient to distinguish in Emacs
  540. between these keys and the "same" control characters typed with the
  541. CTRL key.
  542.    Emacs 19 distinguishes these two kinds of input, when used with the X
  543. Window System.  It treats the "special" keys as function keys named
  544. `tab', `return', `backspace', `linefeed', `escape', and `delete'.
  545. These function keys translate automatically into the corresponding
  546. ASCII characters *if* they have no bindings of their own.  As a result,
  547. neither users nor Lisp programs need to pay attention to the
  548. distinction unless they care to.
  549.    If you do not want to distinguish between (for example) TAB and
  550. `C-i', make just one binding, for the ASCII character TAB (octal code
  551. 011).  If you do want to distinguish, make one binding for this ASCII
  552. character, and another for the "function key" `tab'.
  553.    With an ordinary ASCII terminal, there is no way to distinguish
  554. between TAB and `C-i' (and likewise for other such pairs), because the
  555. terminal sends the same character in both cases.
  556. File: emacs,  Node: Mouse Buttons,  Next: Disabling,  Prev: Named ASCII Chars,  Up: Key Bindings
  557. Rebinding Mouse Buttons
  558. -----------------------
  559.    Emacs uses Lisp symbols to designate mouse buttons, too.  The
  560. ordinary mouse events in Emacs are "click" events; these happen when you
  561. press a button and release it without moving the mouse.  You can also
  562. get "drag" events, when you move the mouse while holding the button
  563. down.  Drag events happen when you finally let go of the button.
  564.    The symbols for basic click events are `mouse-1' for the leftmost
  565. button, `mouse-2' for the next, and so on.  Here is how you can
  566. redefine the second mouse button to split the current window:
  567.      (global-set-key [mouse-2] 'split-window-vertically)
  568.    The symbols for drag events are similar, but have the prefix `drag-'
  569. before the word `mouse'.  For example, dragging the first button
  570. generates a `drag-mouse-1' event.
  571.    You can also define bindings for events that occur when a mouse
  572. button is pressed down.  These events start with `down-' instead of
  573. `drag-'.  Such events are generated only if they have key bindings.
  574. When you get a button-down event, a corresponding click or drag event
  575. will always follow.
  576.    If you wish, you can distinguish single, double, and triple clicks.
  577. A double click means clicking a mouse button twice in approximately the
  578. same place.  The first click generates an ordinary click event.  The
  579. second click, if it comes soon enough, generates a double-click event
  580. instead.  The event type for a double click event starts with
  581. `double-': for example, `double-mouse-3'.
  582.    This means that you can give a special meaning to the second click at
  583. the same place, but it must act on the assumption that the ordinary
  584. single click definition has run when the first click was received.
  585.    This constrains what you can do with double clicks, but user
  586. interface designers say that this constraint ought to be followed in
  587. any case.  A double click should do something similar to the single
  588. click, only "more so".  The command for the double-click event should
  589. perform the extra work for the double click.
  590.    If a double-click event has no binding, it changes to the
  591. corresponding single-click event.  Thus, if you don't define a
  592. particular double click specially, it executes the single-click command
  593. twice.
  594.    Emacs also supports triple-click events whose names start with
  595. `triple-'.  Emacs does not distinguish quadruple clicks as event types;
  596. clicks beyond the third generate additional triple-click events.
  597. However, the full number of clicks is recorded in the event list, so you
  598. can distinguish if you really want to.  We don't recommend distinct
  599. meanings for more than three clicks, but sometimes it is useful for
  600. subsequent clicks to cycle through the same set of three meanings, so
  601. that four clicks are equivalent to one click, five are equivalent to
  602. two, and six are equivalent to three.
  603.    Emacs also records multiple presses in drag and button-down events.
  604. For example, when you press a button twice, then move the mouse while
  605. holding the button, Emacs gets a `double-drag-' event.  And at the
  606. moment when you press it down for the second time, Emacs gets a
  607. `double-down-' event (which is ignored, like all button-down events, if
  608. it has no binding).
  609.    The variable `double-click-time' specifies how long may elapse
  610. between clicks that are recognized as a pair.  Its value is measured in
  611. milliseconds.  If the value is `nil', double clicks are not detected at
  612. all.  If the value is `t', then there is no time limit.
  613.    The symbols for mouse events also indicate the status of the modifier
  614. keys, with the usual prefixes `C-', `M-', `H-', `s-', `A-' and `S-'.
  615. These always precede `double-' or `triple-', which always precede
  616. `drag-' or `down-'.
  617.    A frame includes areas that don't show text from the buffer, such as
  618. the mode line and the scroll bar.  You can tell whether a mouse button
  619. comes from a special area of the screen by means of dummy "prefix
  620. keys."  For example, if you click the mouse in the mode line, you get
  621. the prefix key `mode-line' before the ordinary mouse-button symbol.
  622. Thus, here is how to define the command for clicking the first button in
  623. a mode line to run `scroll-up':
  624.      (global-set-key [mode-line mouse-1] 'scroll-up)
  625.    Here is the complete list of these dummy prefix keys and their
  626. meanings:
  627. `mode-line'
  628.      The mouse was in the mode line of a window.
  629. `vertical-line'
  630.      The mouse was in the vertical line separating side-by-side
  631.      windows.  (If you use scroll bars, they appear in place of these
  632.      vertical lines.)
  633. `vertical-scroll-bar'
  634.      The mouse was in a vertical scroll bar.  (This is the only kind of
  635.      scroll bar Emacs currently supports.)
  636.    You can put more than one mouse button in a key sequence, but it
  637. isn't usual to do so.
  638. File: emacs,  Node: Disabling,  Prev: Mouse Buttons,  Up: Key Bindings
  639. Disabling Commands
  640. ------------------
  641.    Disabling a command marks the command as requiring confirmation
  642. before it can be executed.  The purpose of disabling a command is to
  643. prevent beginning users from executing it by accident and being
  644. confused.
  645.    An attempt to invoke a disabled command interactively in Emacs
  646. displays a window containing the command's name, its documentation, and
  647. some instructions on what to do immediately; then Emacs asks for input
  648. saying whether to execute the command as requested, enable it and
  649. execute it, or cancel.  If you decide to enable the command, you are
  650. asked whether to do this permanently or just for the current session.
  651. Enabling permanently works by automatically editing your `.emacs' file.
  652.    The direct mechanism for disabling a command is to put a non-`nil'
  653. `disabled' property on the Lisp symbol for the command.  Here is the
  654. Lisp program to do this:
  655.      (put 'delete-region 'disabled t)
  656.    If the value of the `disabled' property is a string, that string is
  657. included in the message printed when the command is used:
  658.      (put 'delete-region 'disabled
  659.           "It's better to use `kill-region' instead.\n")
  660.    You can make a command disabled either by editing the `.emacs' file
  661. directly or with the command `M-x disable-command', which edits the
  662. `.emacs' file for you.  Likewise, `M-x enable-command' edits `.emacs'
  663. to enable a command permanently.  *Note Init File::.
  664.    Whether a command is disabled is independent of what key is used to
  665. invoke it; disabling also applies if the command is invoked using
  666. `M-x'.  Disabling a command has no effect on calling it as a function
  667. from Lisp programs.
  668. File: emacs,  Node: Keyboard Translations,  Next: Syntax,  Prev: Key Bindings,  Up: Customization
  669. Keyboard Translations
  670. =====================
  671.    Some keyboards do not make it convenient to send all the special
  672. characters that Emacs uses.  The most common problem case is the DEL
  673. character.  Some keyboards provide no convenient way to type this very
  674. important character--usually because they were designed to expect the
  675. character `C-h' to be used for deletion.  On these keyboard, if you
  676. press the key normally used for deletion, Emacs handles the `C-h' as a
  677. prefix character and offers you a list of help options, which is not
  678. what you want.
  679.    You can work around this problem within Emacs by setting up keyboard
  680. translations to turn `C-h' into DEL and DEL into `C-h', as follows:
  681.      ;; Translate `C-h' to DEL.
  682.      (keyboard-translate ?\C-h ?\C-?)
  683.      ;; Translate DEL to `C-h'.
  684.      (keyboard-translate ?\C-? ?\C-h)
  685.    Keyboard translations are not the same as key bindings in keymaps
  686. (*note Keymaps::.).  Emacs contains numerous keymaps that apply in
  687. different situations, but there is only one set of keyboard
  688. translations, and it applies to every character that Emacs reads from
  689. the terminal.  Keyboard translations take place at the lowest level of
  690. input processing; the keys that are looked up in keymaps contain the
  691. characters that result from keyboard translation.
  692.    Under X, the keyboard key named DEL acts like a function key and is
  693. distinct from the ASCII character named DEL.  *Note Named ASCII
  694. Chars::.  Keyboard translations affect only ASCII character input, not
  695. function keys; thus, the above example used under X will not do what you
  696. probably want.  However, you can remap the keyboard keys using
  697. `xmodmap' when using X.
  698.    For full information about how to use keyboard translations, see
  699. *Note Translating Input: (elisp)Translating Input.
  700. File: emacs,  Node: Syntax,  Next: Init File,  Prev: Keyboard Translations,  Up: Customization
  701. The Syntax Table
  702. ================
  703.    All the Emacs commands which parse words or balance parentheses are
  704. controlled by the "syntax table".  The syntax table says which
  705. characters are opening delimiters, which are parts of words, which are
  706. string quotes, and so on.  Each major mode has its own syntax table
  707. (though sometimes related major modes use the same one) which it
  708. installs in each buffer that uses that major mode.  The syntax table
  709. installed in the current buffer is the one that all commands use, so we
  710. call it "the" syntax table.  A syntax table is a Lisp object, a vector
  711. of length 256 whose elements are numbers.
  712.    To display a description of the contents of the current syntax table,
  713. type `C-h s' (`describe-syntax').  The description of each character
  714. includes both the string you would have to give to
  715. `modify-syntax-entry' to set up that character's current syntax, and
  716. some English to explain that string if necessary.
  717.    For full information on the syntax table, see *Note Syntax Tables:
  718. (elisp)Syntax Tables.
  719. File: emacs,  Node: Init File,  Prev: Syntax,  Up: Customization
  720. The Init File, `~/.emacs'
  721. =========================
  722.    When Emacs is started, it normally loads a Lisp program from the file
  723. `.emacs' in your home directory.  We call this file your "init file"
  724. because it specifies how to initialize Emacs for you.  You can use the
  725. command line switches `-q' and `-u' to tell Emacs whether to load an
  726. init file, and which one (*note Entering Emacs::.).
  727.    There can also be a "default init file", which is the library named
  728. `default.el', found via the standard search path for libraries.  The
  729. Emacs distribution contains no such library; your site may create one
  730. for local customizations.  If this library exists, it is loaded
  731. whenever you start Emacs (except when you specify `-q').  But your init
  732. file, if any, is loaded first; if it sets `inhibit-default-init'
  733. non-`nil', then `default' is not loaded.
  734.    Your site may also have a "site startup file"; this is named
  735. `site-start.el', if it exists.  Emacs loads this library before it
  736. loads your init file.  To inhibit loading of this library, use the
  737. option `-no-site-file'.
  738.    If you have a large amount of code in your `.emacs' file, you should
  739. move it into another file such as `~/SOMETHING.el', byte-compile it,
  740. and make your `.emacs' file load it with `(load "~/SOMETHING")'.  *Note
  741. Byte Compilation: (elisp)Byte Compilation, for more information about
  742. compiling Emacs Lisp programs.
  743. * Menu:
  744. * Init Syntax::         Syntax of constants in Emacs Lisp.
  745. * Init Examples::    How to do some things with an init file.
  746. * Terminal Init::    Each terminal type can have an init file.
  747. * Find Init::         How Emacs finds the init file.
  748. File: emacs,  Node: Init Syntax,  Next: Init Examples,  Up: Init File
  749. Init File Syntax
  750. ----------------
  751.    The `.emacs' file contains one or more Lisp function call
  752. expressions.  Each of these consists of a function name followed by
  753. arguments, all surrounded by parentheses.  For example, `(setq
  754. fill-column 60)' calls the function `setq' to set the variable
  755. `fill-column' (*note Filling::.) to 60.
  756.    The second argument to `setq' is an expression for the new value of
  757. the variable.  This can be a constant, a variable, or a function call
  758. expression.  In `.emacs', constants are used most of the time.  They
  759. can be:
  760. Numbers:
  761.      Numbers are written in decimal, with an optional initial minus
  762.      sign.
  763. Strings:
  764.      Lisp string syntax is the same as C string syntax with a few extra
  765.      features.  Use a double-quote character to begin and end a string
  766.      constant.
  767.      In a string, you can include newlines and special characters
  768.      literally.  But often it is cleaner to use backslash sequences for
  769.      them: `\n' for newline, `\b' for backspace, `\r' for carriage
  770.      return, `\t' for tab, `\f' for formfeed (control-L), `\e' for
  771.      escape, `\\' for a backslash, `\"' for a double-quote, or `\OOO'
  772.      for the character whose octal code is OOO.  Backslash and
  773.      double-quote are the only characters for which backslash sequences
  774.      are mandatory.
  775.      `\C-' can be used as a prefix for a control character, as in
  776.      `\C-s' for ASCII control-S, and `\M-' can be used as a prefix for
  777.      a Meta character, as in `\M-a' for `Meta-A' or `\M-\C-a' for
  778.      `Control-Meta-A'.
  779. Characters:
  780.      Lisp character constant syntax consists of a `?' followed by
  781.      either a character or an escape sequence starting with `\'.
  782.      Examples: `?x', `?\n', `?\"', `?\)'.  Note that strings and
  783.      characters are not interchangeable in Lisp; some contexts require
  784.      one and some contexts require the other.
  785. True:
  786.      `t' stands for `true'.
  787. False:
  788.      `nil' stands for `false'.
  789. Other Lisp objects:
  790.      Write a single-quote (') followed by the Lisp object you want.
  791. File: emacs,  Node: Init Examples,  Next: Terminal Init,  Prev: Init Syntax,  Up: Init File
  792. Init File Examples
  793. ------------------
  794.    Here are some examples of doing certain commonly desired things with
  795. Lisp expressions:
  796.    * Make TAB in C mode just insert a tab if point is in the middle of a
  797.      line.
  798.           (setq c-tab-always-indent nil)
  799.      Here we have a variable whose value is normally `t' for `true' and
  800.      the alternative is `nil' for `false'.
  801.    * Make searches case sensitive by default (in all buffers that do not
  802.      override this).
  803.           (setq-default case-fold-search nil)
  804.      This sets the default value, which is effective in all buffers
  805.      that do not have local values for the variable.  Setting
  806.      `case-fold-search' with `setq' affects only the current buffer's
  807.      local value, which is not what you probably want to do in an init
  808.      file.
  809.    * Specify your own email address, if Emacs can't figure it out
  810.      correctly.
  811.           (setq user-mail-address "coon@yoyodyne.com")
  812.      Various Emacs packages that need to use your own email address use
  813.      the value of `user-mail-address'.
  814.    * Make Text mode the default mode for new buffers.
  815.           (setq default-major-mode 'text-mode)
  816.      Note that `text-mode' is used because it is the command for
  817.      entering Text mode.  The single-quote before it makes the symbol a
  818.      constant; otherwise, `text-mode' would be treated as a variable
  819.      name.
  820.    * Turn on Auto Fill mode automatically in Text mode and related
  821.      modes.
  822.           (add-hook 'text-mode-hook
  823.             '(lambda () (auto-fill-mode 1)))
  824.      This shows how to add a hook function to a normal hook variable
  825.      (*note Hooks::.).  The function we supply is a list starting with
  826.      `lambda', with a single-quote in front of it to make it a list
  827.      constant rather than an expression.
  828.      It's beyond the scope of this manual to explain Lisp functions,
  829.      but for this example it is enough to know that the effect is to
  830.      execute `(auto-fill-mode 1)' when Text mode is entered.  You can
  831.      replace that with any other expression that you like, or with
  832.      several expressions in a row.
  833.      Emacs comes with a function named `turn-on-auto-fill' whose
  834.      definition is `(lambda () (auto-fill-mode 1))'.  Thus, a simpler
  835.      way to write the above example is as follows:
  836.           (add-hook 'text-mode-hook 'turn-on-auto-fill)
  837.    * Load the installed Lisp library named `foo' (actually a file
  838.      `foo.elc' or `foo.el' in a standard Emacs directory).
  839.           (load "foo")
  840.      When the argument to `load' is a relative file name, not starting
  841.      with `/' or `~', `load' searches the directories in `load-path'
  842.      (*note Lisp Libraries::.).
  843.    * Load the compiled Lisp file `foo.elc' from your home directory.
  844.           (load "~/foo.elc")
  845.      Here an absolute file name is used, so no searching is done.
  846.    * Rebind the key `C-x l' to run the function `make-symbolic-link'.
  847.           (global-set-key "\C-xl" 'make-symbolic-link)
  848.      or
  849.           (define-key global-map "\C-xl" 'make-symbolic-link)
  850.      Note once again the single-quote used to refer to the symbol
  851.      `make-symbolic-link' instead of its value as a variable.
  852.    * Do the same thing for C mode only.
  853.           (define-key c-mode-map "\C-xl" 'make-symbolic-link)
  854.    * Redefine all keys which now run `next-line' in Fundamental mode so
  855.      that they run `forward-line' instead.
  856.           (substitute-key-definition 'next-line 'forward-line
  857.                                      global-map)
  858.    * Make `C-x C-v' undefined.
  859.           (global-unset-key "\C-x\C-v")
  860.      One reason to undefine a key is so that you can make it a prefix.
  861.      Simply defining `C-x C-v ANYTHING' will make `C-x C-v' a prefix,
  862.      but `C-x C-v' must first be freed of its usual non-prefix
  863.      definition.
  864.    * Make `$' have the syntax of punctuation in Text mode.  Note the
  865.      use of a character constant for `$'.
  866.           (modify-syntax-entry ?\$ "." text-mode-syntax-table)
  867.    * Enable the use of the command `eval-expression' without
  868.      confirmation.
  869.           (put 'eval-expression 'disabled nil)
  870.