Xah Lee, 2007-05-29
This page gives a explanation of the several confusing
represenation of non-printable characters such as \n \r \t \f and
^J ^M ^I ^L and C-m RET <return> Enter ^m control-m 13 (?\C-m), and the various key syntax for
them in keyboarding related software (X11 modmap, emacs, OS X DefaultKeyBinding.dict, AutoHotkey, …), and how to type non-printable characters in emacs.
On 2007-05-29, Will 〔schimpan…@gmx.de〕 wrote:
how can I find the an overview on how to enter meta-characters (e.g. esc, return, linefeed, tab, …) a) in a regular buffer b) in the minibuffer when using standard search/replace-functions c) in the minibuffer when using search/replace-functions using regular expressions d) in the .emacs file when defining keybindings As far as I can see in all those situations entering meta-characters is addressed in a different way which I find confusing, e.g.: a) <key> _or_ C-q <key> b) C-q C-[, C-q C-m, C-q C-j, C-q C-i c) \e, \r, \n, \t d) (define-key [(meta c) (control c) (tab c)] "This is confusing!") Furthermore, they are displayed in a different way,e.g. - actual, visible layout - ^E, ^M, ^L, ^I - Octals I would be happy about pages summarizing such information. Any references available?
The issues involve non-printable chars, its representation, its input method, its input method representation, suppression of a key's normal function, and program language's need to represent non-printables in strings.
Here's a short summary:
(global-set-key [(control b)] 'cmd) and other variations is emacs's syntax to represent keystrokes in elisp. A syntax for key strokes is necessary because keys are not ascii chars (for example, function keys, Home key). For historical reasons, elisp has several syntaxes to represent the same keystrokes.The following is a detailed explanation.
Your first item:
Ctrl+q ‹key›
The 【Ctrl+q】 (or, pressing the Control key down then type q) is the keyboard shortcut to invoke the command quoted-insert. After this command is invoked, the key press on your keyboard will force emacs to insert a character represented by that key, and suppress that key's normal function.
For example, if you are doing string replacement, and you want to replace tabs by returns. When emacs prompts you to type a string to replace, you can't just press the tab key, because the normal function of a tab key in emacs will try to do a command completion. (and in other Applications, it usually switches you to the next input field) So, here you can do 【Ctrl+q】 first, then press the tab key. Similarly, you can't type the return key and expect it to insert a return character, because normally the return key will activate the OK button or signal “end of input”.
This input mechanism usually don't exist in other text editors. In other text editors, when you want to enter the ASCII Tab character or Carriage Return character in some pop-up dialog, you often use a special representation such as “/t” or “/r” instead. Or, sometimes, by holding down the mouse, then press the key. Often, they simply provide a graphical menu or check box to let you enter special characters. The need to input character literally, is frequently needed in keyboard macro apps. (See: Keyboards, Layouts, Hotkeys, Macros, RSI.)
Ctrl+q Ctrl+[, Ctrl+q Ctrl+m, Ctrl+q Ctrl+j, Ctrl+q Ctrl+i
In this, the 【Ctrl+q】 is the keyboard shortcut to invoke the command quoted-insert, which will insert a literal character of whatever character you can type on your keyboard. So, for example, 【Ctrl+q】 followed by the Tab key will insert the non-printable character tab.
The 【Ctrl+[】, 【Ctrl+m】, 【Ctrl+j】 etc key-press combinations, are methods to input non-printable characters that may not have a corresponding key on the keyboard.
For example, suppose you want to do string replacement, by replacing Carriage Return (ASCII 13) by Line Feed (ASCII 10). Depending what is your operating system and keyboard, usually your keyboard only has a key that corresponds to just one of these characters. But now with the special method to input non-printable characters, you can now type any of the non-printable characters directly.
When speaking of non-printable characters, implied in the context is some standard character set. Implicitly, we are talking about ASCII, and this applies to emacs. Now, in ASCII, there are about 30 non-printable characters. Each of these is given a standard abbreviation, and several representations for different purposes. For example, ASCII 13 is the “Carriage return” character, with standard abbreviation code CR, and “^M” as its control-key-input representation. (M being the 13th of the English alphabet), and Control-m is the conventional means to input the character, and the conventional method to indicate a control key combination is by using the caret “^” followed by the character.
For the full detail, look at the table in the wikipedia article: ASCII. Here's a excerpt of the non-printable ascii chars table.
| Dec | Hex | Abbr | PR†1 | CS†2 | CEC†3 | Description |
|---|---|---|---|---|---|---|
| 0 | 00 | NUL | ␀ | ^@ | \0 | Null character |
| 1 | 01 | SOH | ␁ | ^A | Start of Header | |
| 2 | 02 | STX | ␂ | ^B | Start of Text | |
| 3 | 03 | ETX | ␃ | ^C | End of Text | |
| 4 | 04 | EOT | ␄ | ^D | End of Transmission | |
| 5 | 05 | ENQ | ␅ | ^E | Enquiry | |
| 6 | 06 | ACK | ␆ | ^F | Acknowledgment | |
| 7 | 07 | BEL | ␇ | ^G | \a | Bell |
| 8 | 08 | BS | ␈ | ^H | \b | Backspace |
| 9 | 09 | HT | ␉ | ^I | \t | Horizontal Tab |
| 10 | 0A | LF | ␊ | ^J | \n | Line feed |
| 11 | 0B | VT | ␋ | ^K | \v | Vertical Tab |
| 12 | 0C | FF | ␌ | ^L | \f | Form feed |
| 13 | 0D | CR | ␍ | ^M | \r | Carriage return |
| 14 | 0E | SO | ␎ | ^N | Shift Out | |
| 15 | 0F | SI | ␏ | ^O | Shift In | |
| 16 | 10 | DLE | ␐ | ^P | Data Link Escape | |
| 17 | 11 | DC1 | ␑ | ^Q | Device Control 1 (oft. XON) | |
| 18 | 12 | DC2 | ␒ | ^R | Device Control 2 | |
| 19 | 13 | DC3 | ␓ | ^S | Device Control 3 (oft. XOFF) | |
| 20 | 14 | DC4 | ␔ | ^T | Device Control 4 | |
| 21 | 15 | NAK | ␕ | ^U | Negative Acknowledgment | |
| 22 | 16 | SYN | ␖ | ^V | Synchronous Idle | |
| 23 | 17 | ETB | ␗ | ^W | End of Trans. Block | |
| 24 | 18 | CAN | ␘ | ^X | Cancel | |
| 25 | 19 | EM | ␙ | ^Y | End of Medium | |
| 26 | 1A | SUB | ␚ | ^Z | Substitute | |
| 27 | 1B | ESC | ␛ | ^[ | \e | Escape |
| 28 | 1C | FS | ␜ | ^\ | File Separator | |
| 29 | 1D | GS | ␝ | ^] | Group Separator | |
| 30 | 1E | RS | ␞ | ^^ | Record Separator | |
| 31 | 1F | US | ␟ | ^_ | Unit Separator | |
| 127 | 7F | DEL | ␡ | ^? | Delete | |
| Dec | Hex | Abbr | PR†1 | CS†2 | CEC†3 | Description |
In general, the practical issues involved for a non-printable character, in the context of a programing language for text editing, are:
(Note: Emacs has several input methods to enter any non-printable chars in unicode. See Emacs and Unicode Tips.)
\e, \r, \n, \t
This is a ad-hoc set of input and display representation for a few non-printable characters, used primarily in programing languages. This set is started by most likely the C language, and is today a de facto standard used in C++, C#, Java, Perl, Python, PHP, JavaScript …, and emacs lisp too.
There are good reasons that these are preferred than a literal or the more systematic caret notation. Here are some reasons:
In the above, we discussed non-printable chars, its representation, its input method, and the representation of its input method. We also discussed, a representation of a subset of these non-printable chars as a “escape mechanism” that arise from C computer language's strings.
However, emacs also need a system to represent keystrokes (as used in its keyboard macro system, and keybinding).
Note here, that keystroke combination and sequence, is not the same and cannot be mapped to character's input/representation in a character set such as ASCII. For example, the F1 key isn't a character. The Alt modifier key, isn't a character nor is it a function in one of ASCII's non-printable character. The keys on the number keypad, need a different representation than the ones on the main keyboard section.
Emacs today has several rather confusing ways for keystroke representation, out of mostly historical reasons. Emacs Lisp, started in about mid 1980. At the time, computer hardware are limited, and compiler technology is also limited. Thus, Emacs Lisp has some peculiarities.
Here are examples of multiple representation for the same keystroke (tested in emacs 22):
; equivalent code for a single keystroke (global-set-key "b" 'cmd) (global-set-key [98] 'cmd) (global-set-key [?b] 'cmd) (global-set-key [(?b)] 'cmd) (global-set-key (kbd "b") 'cmd) ; equivalent code for a named special key: Enter (global-set-key "\r" 'cmd) (global-set-key [?\r] 'cmd) (global-set-key [13] 'cmd) (global-set-key [(13)] 'cmd) (global-set-key [return] 'cmd) (global-set-key [?\^M] 'cmd) (global-set-key [?\^m] 'cmd) (global-set-key [?\C-M] 'cmd) (global-set-key [?\C-m] 'cmd) (global-set-key [(?\C-m)] 'cmd) (global-set-key (kbd "RET") 'cmd) (global-set-key (kbd "<return>") 'cmd) ; equivalent code for binding 1 mod key + 1 letter key: Meta+b (global-set-key "\M-b" 'cmd) (global-set-key [?\M-b] 'cmd) (global-set-key [(meta 98)] 'cmd) (global-set-key [(meta b)] 'cmd) (global-set-key [(meta ?b)] 'cmd) (global-set-key (kbd "M-b") 'cmd) ; equivalent code for binding 1 mod key + 1 special key: Meta+Enter (global-set-key [M-return] 'cmd) (global-set-key [\M-return] 'cmd) (global-set-key [(meta return)] 'cmd) (global-set-key (kbd "M-<return>") 'cmd) ; equivalent code for binding Meta + cap letter key: Meta Shift b (global-set-key (kbd "M-B") 'cmd) (global-set-key "\M-\S-b" 'cmd) (global-set-key "\S-\M-b" 'cmd) (global-set-key "\M-B" 'cmd) (global-set-key [?\M-S-b] 'cmd) ; invalid-read-syntax (global-set-key [?\M-?\S-b] 'cmd) ; invalid-read-syntax (global-set-key [?\M-\S-b] 'cmd) ; compile but no effect (global-set-key [?\M-B] 'cmd) (global-set-key [\M-B] 'cmd) ; compile but no effect (global-set-key [(meta shift b)] 'cmd) (global-set-key [(shift meta b)] 'cmd) (global-set-key (kbd "M-B") 'cmd) (global-set-key (kbd "M-S-b") 'cmd) ; compile but no effect ; Meta + shifted symbol key. (global-set-key (kbd "M-@") 'cmd) ; good (global-set-key (kbd "M-S-2") 'cmd) ; compile but no effect ; to do: show examples of key sequences
Note: keystroke notation is not a new concept. Here are some examples of syntax from different keyboard related software:
One of emacs's quirk is that its character data type are simply
integers. So, a character “c” is just the integer 99 in elisp. Now,
elisp has a special read syntax for chars, so that the letter c in
lisp can also be written as ?c. This way, it is easier for
programers to insert a character data in their program, and easier to
read too. A backslash can be added in front of the char, so that ?'
can be written as ?\'. This syntax is introduced in part so that
Emacs's lisp editing commands don't get confused (because the
apostrophe is lisp syntax to quote symbols). Many of the control
characters in ASCII also have a backslash representation. Here's a
table from the
Elisp Manual: Character-Type:
?\a ⇒ 7 ; control-g, C-g
?\b ⇒ 8 ; backspace, <BS>, C-h
?\t ⇒ 9 ; tab, <TAB>, C-i
?\n ⇒ 10 ; newline, C-j
?\v ⇒ 11 ; vertical tab, C-k
?\f ⇒ 12 ; formfeed character, C-l
?\r ⇒ 13 ; carriage return, <RET>, C-m
?\e ⇒ 27 ; escape character, <ESC>, C-[
?\s ⇒ 32 ; space character, <SPC>
?\\ ⇒ 92 ; backslash character, \
?\d ⇒ 127 ; delete character, <DEL>
So, now, the character tab (ASCII 9), can be represented in elisp as a character type data as:
9, ?\t.
Here's more quote from the manual:
Control characters may be represented using yet another read syntax. This consists of a question mark followed by a backslash, caret, and the corresponding non-control character, in either upper or lower case. For example, both `?\^I' and `?\^i' are valid read syntax for the character C-i, the character whose value is 9.
Instead of the `^', you can use `C-'; thus, `?\C-i' is equivalent to `?\^I' and to `?\^i':
?\^I ⇒ 9 ?\C-I ⇒ 9
… The read syntax for meta characters uses `\M-'. For example, `?\M-A' stands for M-A. You can use `\M-' together with octal character codes (see below), with `\C-', or with any other syntax for a character. Thus, you can write M-A as `?\M-A', or as `?\M-\101'. Likewise, you can write C-M-b as `?\M-\C-b', `?\C-\M-b', or `?\M-\002'.
So now, the tab char can be any of:
9 ?\t ?\^i ?\^I ?\C-i ?\C-I
(info "(elisp) Key Sequences")
Thanks to diszno for a correction on ?t.