相关文章
Emacs
Emacs/概念
Emacs/运行
Emacs/提示与技巧
Emacs/疑难解答
Emacs/软件包
文本编辑器
Vim
本文介绍 Emacs 的基础使用。
阅读本文前,请先阅读 Emacs/概念。
进入 Emacs[编辑 | 编辑源代码]
本文或本章节可能需要合并到Emacs/运行。
附注: 内容有重复。(在 Talk:Emacs/使用 中讨论)
调用 Emacs 的通常方法是使用 shell 命令 emacs。在 GUI 终端上运行 Unix shell 的终端窗口中,可以使用 emacs & 在后台运行 Emacs;这样,Emacs 就不会占用终端窗口,因此你可以用它来运行其他 shell 命令。
Emacs 启动时,初始帧会显示一个名为 *GNU Emacs* 的特殊缓冲区。这个启动界面包含 Emacs 的相关信息,以及对初学者有用的常用任务链接。例如,激活 Emacs Tutorial 链接可打开 Emacs 教程;其作用与 C-h t(help-with-tutorial)命令相同。要激活链接,可以将点移动到该链接上并键入 RET,或者用 mouse-1(鼠标左键)单击该链接。
使用命令行参数,可以让 Emacs 在启动时立即访问一个或多个文件。例如,emacs 文本.txt 启动 Emacs 时,缓冲区会显示文件 文本.txt 的内容。这一功能主要是为了与其他文本编辑器兼容,因为其他编辑器是为了从 shell 启动进行短时间编辑而设计的。如果以这种方式调用 Emacs,初始帧会被分成两个窗口,一个显示指定文件,另一个显示启动屏幕。
一般来说,每次编辑文件都重新启动 Emacs 既不必要又浪费。建议使用 Emacs 的方法是在登录后只启动一次,并在同一个 Emacs 会话中完成所有编辑工作。如果这样使用 Emacs,Emacs 会话就会积累一些有价值的上下文,如 kill ring、寄存器、撤销历史和标记环数据,这些都会使编辑更加方便。本文稍后将介绍这些功能。
要在 Emacs 运行时从其他程序编辑文件,可以使用 emacsclient 辅助程序在现有的 Emacs 会话中打开文件。
Emacs 还接受其他命令行参数,这些参数会告诉它加载某些 Lisp 文件、在何处放置初始框架等。参见 Emacs 调用的命令行参数。
如果变量 inhibit-startup-screen 不为零,则 Emacs 不显示启动屏幕。在这种情况下,如果在命令行中指定了一个或多个文件,Emacs 会简单地显示这些文件;否则,它会显示一个名为 *scratch* 的缓冲区,该缓冲区可用于交互式地评估 Emacs Lisp 表达式。你可以使用自定义工具或编辑初始化文件来设置变量 inhibit-startup-screen。
通过将变量 initial-buffer-choice 设置为命名文件或目录的字符串,也可以强制 Emacs 在启动时显示文件或目录。initial-buffer-choice 的值也可以是一个函数(无参数),它应该返回一个缓冲区,然后显示出来。如果 initial-buffer-choice 的值不是零,那么如果你在命令行中指定了任何文件,Emacs 仍会访问它们,但最初不会显示它们。
退出 Emacs[编辑 | 编辑源代码]
同 Vim/Neovim、Helix 等编辑器一样,初学者可能不知如何退出。
C-x C-c
杀死 Emacs(save-buffers-kill-terminal)。
C-z
在文本终端上,挂起 Emacs;在图形显示屏上,图标化(或最小化)所选帧(挂起帧)。
系统 shell 内运行 killall emacs
强制终止 Emacs 进程,可以在 Emacs 卡死时使用。
杀死 Emacs 意味着终止 Emacs 程序。为此,请键入 C-x C-c(save-buffers-kill-terminal)。使用两个字符的键序是为了防止意外键入。如果输入 C-x C-c 时有任何修改过的文件访问缓冲区,Emacs 会首先保存这些缓冲区。如果没有全部保存,则会再次请求确认,因为未保存的更改将丢失。如果有子进程仍在运行,Emacs 也会要求确认,因为杀死 Emacs 也会杀死这些子进程。
如果将 Emacs 用作服务器,C-x C-c 的行为会比较特殊。如果你在客户端框架中输入它,它会关闭客户端连接。请参阅将 Emacs 用作服务器。
Emacs 可以选择在杀死会话时记录某些会话信息,例如当时正在访问的文件。下次启动 Emacs 时就可以使用这些信息。请参阅保存 Emacs 会话。
如果变量 confirm-kill-emacs 的值不是零,C-x C-c 会假定其值是一个谓词函数,并调用该函数。如果函数调用的结果不是零,会话就会被杀死,否则 Emacs 会继续运行。用来作为 confirm-kill-emacs 值的一个方便的函数是 yes-or-no-p 函数。confirm-kill-emacs 的默认值为 nil。
如果变量 confirm-kill-processes 的值为 nil,则 C-x C-c 在杀死 Emacs 启动的子进程之前不会请求确认。默认值为 t。
要进一步自定义 Emacs 退出时发生的情况,请参阅《GNU Emacs Lisp 参考手册》中的杀死 Emacs。
要在不提示保存的情况下杀死 Emacs,请键入 M-x kill-emacs。
C-z 运行命令 suspend-frame。在图形显示屏上,该命令会最小化(或图标化)所选的 Emacs 框架,使其隐藏起来,以便稍后恢复(具体如何隐藏取决于窗口系统)。在文本终端上,C-z 命令会暂停 Emacs,暂时停止程序并将控制权交还给父进程(通常是 shell);在大多数 shell 中,暂停 Emacs 后可以使用 shell 命令 %emacs 恢复 Emacs。
文本终端通常会侦听某些特殊字符,其含义是杀死或暂停正在运行的程序。在 Emacs 中,这种终端功能是关闭的。在 Emacs 中,C-z 和 C-x C-c 作为按键的含义是受多个操作系统中使用 C-z 和 C-c 作为停止或杀死程序的字符的启发,但这是它们与操作系统的唯一关系。你可以自定义这些键来运行你选择的任何命令。
基本编辑命令[编辑 | 编辑源代码]
在此,我们将讲解如何输入文本、进行修改并将文本保存到文件中的基础知识。如果您对这些内容不熟悉,建议您首先运行 Emacs 边做边学教程,键入 C-h t(help-with-tutorial)。
插入文本[编辑 | 编辑源代码]
您可以通过键入相关键来插入普通图形字符(如 "a"、"B"、"3" 和 "=")。这样就可以将字符添加到点的缓冲区中。插入后,点将向前移动,因此点将保持在插入文本之后。参见点。
要结束一行并开始新一行,键入 RET(换行)。(RET 键在键盘上可能标有 Return、Enter 或有趣的向左箭头,但在本手册中我们将其称为 RET,中国人常称其回车)。该命令在缓冲区中插入一个换行符,然后根据主要模式缩进。如果点位于行尾,效果是在其后创建一个新的空行并缩进新行;如果点位于行中间,则在该位置分行。要关闭自动缩进功能,可以禁用 "Electric Indent" 模式(请参阅 "缩进的便利功能"),或者键入 C-j,只插入新行,而不进行任何自动缩进。
正如我们在本手册后面所解释的,你可以通过开启次要模式来改变 Emacs 处理文本插入的方式。例如,名为 "Auto Fill" 的次要模式会在行太长时自动分行。名为 "Overwrite" 模式的次要模式会使插入的字符替换(覆盖)现有文本,而不是将其推到右边。请参阅次要模式。
只有图形字符可以通过键入相关的按键来插入;其他按键作为编辑命令,不会自行插入。例如,默认情况下 DEL 运行 delete-backward-char 命令(某些模式将其绑定到不同的命令);但它不会插入字面意义上的 "DEL "字符(ASCII 字符代码 127)。
要插入一个非图形字符或键盘不支持的字符,首先要输入 C-q(quoted-insert)来引用该字符。使用 C-q 有两种方法:
C-q 后接任何非图形字符(甚至是 C-g)都会插入该字符。例如,C-q DEL 插入一个字面意义上的 "DEL" 字符。
C-q 后跟一串八进制数字,插入指定八进制字符代码的字符。您可以使用任意八进制数字;任何非数字都会终止序列。如果终止字符是 RET,则 RET 仅用于终止序列。任何其他非数字都会终止序列,然后作为正常输入,如 C-q 1 0 1 B 插入 "AB"。
在普通的非二进制覆写模式下,八进制序列的使用是禁用的,这样可以方便地插入一个数字,而不是用它来覆写。
要使用十进制或十六进制代替八进制,可将变量 read-quoted-char-radix 设置为 10 或 16。如果弧度为 16,字母 a 至 f 就会像数字一样作为字符代码的一部分。大小写将被忽略。
通过以 C-x 8 开头的命令,可以插入一些常见的 Unicode 字符。例如,C-x 8 [ 插入"'",它是 Unicode 代码点 U+2018 左单引号标记,有时也称为左单引号 "弯引号 "或 "卷曲引号"。同样,C-x 8 ]、C-x 8 { 和 C-x 8 } 分别插入"'"、""和""。此外,Alt 键的作用类似于 C-x 8(除非后面有 RET);例如,A-[ 的作用类似于 C-x 8 [ 并插入。要查看哪些字符具有 C-x 8 速记功能,请键入 C-x 8 C-h。
或者,也可以使用 C-x 8 RET(插入-字符)命令。该命令使用微型缓冲区提示输入字符的 Unicode 名称或码位。如果输入的是名称,命令将提供补全(参见补全)。如果输入码位,应为十六进制数(Unicode 的约定),或具有指定弧度的数字,例如 #o23072(八进制);参见《Emacs Lisp 参考手册》中的整数基础知识。然后,命令将相应的字符插入缓冲区。
例如,以下命令都插入了相同的字符:
C-x 8 RET left single quotation mark RET
C-x 8 RET left sin TAB RET
C-x 8 RET 2018 RET
C-x 8 [
A-[ (if the Alt key works)
` (in Electric Quote mode)
C-q 或 C-x 8 ...的数字参数指定插入字符的份数(参见数字参数)。
作为 C-x 8 的替代方法,可以通过键入 C-u C-x \ iso-transl RET 选择相应的暂存输入法,然后通过键入 C-x \ [ 临时激活该暂存输入法,将插入相同的字符 ' (参见暂存输入法)。
此外,在某些情况下,如果输入使用重音符号和撇号的引号 "like this",即使没有 C-x 8 命令,也会转换为使用单引号的 "like this "形式。同样,使用双重音符号和撇号键入引号 "like this",也会转换为使用双引号的 "like this "形式。参见引号。
更改点的位置[编辑 | 编辑源代码]
除了插入字符外,还必须知道如何移动点(请参阅 "点")。键盘命令 C-f、C-b、C-n 和 C-p 可分别向右、向左、向下和向上移动点。您也可以使用大多数键盘上的方向键移动点: 不过,许多 Emacs 用户发现,使用方向键比使用控制键要慢,因为你需要将手移到键盘上这些键所在的区域。
你也可以点击鼠标左键,将点移动到所点击的位置。Emacs 还提供了多种额外的键盘命令,可以以更复杂的方式移动点。
C-f
Move forward one character (forward-char).
RIGHT
This command (right-char) behaves like C-f, except when point is in a right-to-left paragraph (see Bidirectional Editing).
C-b
Move backward one character (backward-char).
LEFT
This command (left-char) behaves like C-b, except if the current paragraph is right-to-left (see Bidirectional Editing).
C-n
DOWN
Move down one screen line (next-line). This command attempts to keep the horizontal position unchanged, so if you start in the middle of one line, you move to the middle of the next.
C-p
UP
Move up one screen line (previous-line). This command preserves position within the line, like C-n.
C-a
Home
Move to the beginning of the line (move-beginning-of-line).
C-e
End
Move to the end of the line (move-end-of-line).
M-f
Move forward one word (forward-word). See Words.
C-RIGHT
M-RIGHT
This command (right-word) behaves like M-f, except it moves backward by one word if the current paragraph is right-to-left. See Bidirectional Editing.
M-b
Move backward one word (backward-word). See Words.
C-LEFT
M-LEFT
This command (left-word) behaves like M-b, except it moves forward by one word if the current paragraph is right-to-left. See Bidirectional Editing.
M-r
Without moving the text on the screen, reposition point on the left margin of the center-most text line of the window; on subsequent consecutive invocations, move point to the left margin of the top-most line, the bottom-most line, and so forth, in cyclic order (move-to-window-line-top-bottom).
A numeric argument says which screen line to place point on, counting downward from the top of the window (zero means the top line). A negative argument counts lines up from the bottom (−1 means the bottom line). See Numeric Arguments, for more information on numeric arguments.
M-<
Move to the top of the buffer (beginning-of-buffer). With numeric argument n, move to n/10 of the way from the top. On graphical displays, C-HOME does the same.
M->
Move to the end of the buffer (end-of-buffer). On graphical displays, C-END does the same.
C-v
PageDown
next
Scroll the display one screen forward, and move point onscreen if necessary (scroll-up-command). See Scrolling.
M-v
PageUp
prior
Scroll one screen backward, and move point onscreen if necessary (scroll-down-command). See Scrolling.
M-g c
Read a number n and move point to buffer position n. Position 1 is the beginning of the buffer. If point is on or just after a number in the buffer, that is the default for n. Just type RET in the minibuffer to use it. You can also specify n by giving M-g c a numeric prefix argument.
M-g M-g
M-g g
Read a number n and move point to the beginning of line number n (goto-line). Line 1 is the beginning of the buffer. If point is on or just after a number in the buffer, that is the default for n. Just type RET in the minibuffer to use it. You can also specify n by giving M-g M-g a numeric prefix argument. See Creating and Selecting Buffers, for the behavior of M-g M-g when you give it a plain prefix argument. Alternatively, you can use the command goto-line-relative to move point to the line relative to the accessible portion of the narrowed buffer.
goto-line has its own history list (see Minibuffer History). You can have either a single list shared between all buffers (the default) or a separate list for each buffer, by customizing the user option goto-line-history-local.
M-g TAB
Read a number n and move to column n in the current line. Column 0 is the leftmost column. If called with a prefix argument, move to the column number specified by the argument’s numeric value.
C-x C-n
Use the current column of point as the semipermanent goal column (set-goal-column) in the current buffer. When a semipermanent goal column is in effect, C-n, C-p,
C-u C-x C-n
Cancel the goal column. Henceforth, C-n and C-p try to preserve the horizontal position, as usual.
When a line of text in the buffer is longer than the width of the window, Emacs usually displays it on two or more screen lines, a.k.a. visual lines. For convenience, C-n and C-p move point by screen lines, as do the equivalent keys down and up. You can force these commands to move according to logical lines (i.e., according to the text lines in the buffer) by setting the variable line-move-visual to nil; if a logical line occupies multiple screen lines, the cursor then skips over the additional screen lines. For details, see Continuation Lines. See Variables, for how to set variables such as line-move-visual.
Unlike C-n and C-p, most of the Emacs commands that work on lines work on logical lines. For instance, C-a (move-beginning-of-line) and C-e (move-end-of-line) respectively move to the beginning and end of the logical line. Whenever we encounter commands that work on screen lines, such as C-n and C-p, we will point these out.
When line-move-visual is nil, you can also set the variable track-eol to a non-nil value. Then C-n and C-p, when starting at the end of the logical line, move to the end of the next logical line. Normally, track-eol is nil.
C-n normally stops at the end of the buffer when you use it on the last line in the buffer. However, if you set the variable next-line-add-newlines to a non-nil value, C-n on the last line of a buffer creates an additional line at the end and moves down into it.
擦除文本[编辑 | 编辑源代码]
DEL
BACKSPACE
Delete the character before point, or the region if it is active (delete-backward-char).
Delete
Delete the character or grapheme cluster after point, or the region if it is active (delete-forward-char).
C-d
Delete the character after point (delete-char).
C-k
Kill to the end of the line (kill-line).
M-d
Kill forward to the end of the next word (kill-word).
M-DEL
M-BACKSPACE
Kill back to the beginning of the previous word (backward-kill-word).
The DEL (delete-backward-char) command removes the character before point, moving the cursor and the characters after it backwards. If point was at the beginning of a line, this deletes the preceding newline, joining this line to the previous one.
If, however, the region is active, DEL instead deletes the text in the region. See The Mark and the Region, for a description of the region.
On most keyboards, DEL is labeled BACKSPACE, but we refer to it as DEL in this manual. (Do not confuse DEL with the Delete key; we will discuss Delete momentarily.) On some text terminals, Emacs may not recognize the DEL key properly. See If DEL Fails to Delete, if you encounter this problem.
The Delete (delete-forward-char) command deletes in the opposite direction: it deletes the character after point, i.e., the character under the cursor. If point was at the end of a line, this joins the following line onto this one. Like DEL, it deletes the text in the region if the region is active (see The Mark and the Region). If the character after point is composed with following characters and displayed as a single display unit, a so-called grapheme cluster representing the entire sequence, Delete deletes the entire sequence in one go. This is in contrast to DEL which always deletes a single character, even if the character is composed.
C-d (delete-char) deletes the character after point, similar to Delete, but regardless of whether the region is active.
See Deletion, for more detailed information about the above deletion commands.
C-k (kill-line) erases (kills) a line at a time. If you type C-k at the beginning or middle of a line, it kills all the text up to the end of the line. If you type C-k at the end of a line, it joins that line with the following line.
See Killing and Moving Text, for more information about C-k and related commands.
撤销更改[编辑 | 编辑源代码]
C-/
C-x u
C-_
Undo one entry of the undo records—usually, one command worth (undo). (The first key might be unavailable on text-mode displays.)
Emacs records a list of changes made in the buffer text, so you can undo recent changes. This is done using the undo command, which is bound to C-/ (as well as C-x u and C-_). Normally, this command undoes the last change, moving point back to where it was before the change. The undo command applies only to changes in the buffer; you can’t use it to undo cursor motion.
On a terminal that supports the Control modifier on all other keys, the easiest way to invoke undo is with C-/, since that doesn’t need the Shift modifier. On terminals which allow only the ASCII control characters, C-/ does not exist, but for many of them C-/ still works because it actually sends C-_ to Emacs, while many others allow you to omit the Shift modifier when you type C-_ (in effect pressing C--), making that the most convenient way to invoke undo.
Although each editing command usually makes a separate entry in the undo records, very simple commands may be grouped together. Sometimes, an entry may cover just part of a complex command.
If you repeat C-/ (or its aliases), each repetition undoes another, earlier change, back to the limit of the undo information available. If all recorded changes have already been undone, the undo command displays an error message and does nothing.
To learn more about the undo command, see Undo.
文件[编辑 | 编辑源代码]
Text that you insert in an Emacs buffer lasts only as long as the Emacs session. To keep any text permanently, you must put it in a file.
Suppose there is a file named test.emacs in your home directory. To begin editing this file in Emacs, type
C-x C-f test.emacs RET
Here the file name is given as an argument to the command C-x C-f (find-file). That command uses the minibuffer to read the argument, and you type RET to terminate the argument (see The Minibuffer).
Emacs obeys this command by visiting the file: it creates a buffer, copies the contents of the file into the buffer, and then displays the buffer for editing. If you alter the text, you can save the new text in the file by typing C-x C-s (save-buffer). This copies the altered buffer contents back into the file test.emacs, making them permanent. Until you save, the changed text exists only inside Emacs, and the file test.emacs is unaltered.
To create a file, just visit it with C-x C-f as if it already existed. This creates an empty buffer, in which you can insert the text you want to put in the file. Emacs actually creates the file the first time you save this buffer with C-x C-s.
To learn more about using files in Emacs, see File Handling.
帮助[编辑 | 编辑源代码]
If you forget what a key does, you can find out by typing C-h k (describe-key), followed by the key of interest; for example, C-h k C-n tells you what C-n does.
The prefix key C-h stands for “help”. The key F1 serves as an alias for C-h. Apart from C-h k, there are many other help commands providing different kinds of help.
See Help, for details.
空白行[编辑 | 编辑源代码]
Here are special commands and techniques for inserting and deleting blank lines.
C-o
Insert a blank line after the cursor (open-line).
C-x C-o
Delete all but one of many consecutive blank lines (delete-blank-lines).
We have seen how RET (newline) starts a new line of text. However, it may be easier to see what you are doing if you first make a blank line and then insert the desired text into it. This is easy to do using the key C-o (open-line), which inserts a newline after point but leaves point in front of the newline. After C-o, type the text for the new line.
You can make several blank lines by typing C-o several times, or by giving it a numeric argument specifying how many blank lines to make. See Numeric Arguments, for how. If you have a fill prefix, the C-o command inserts the fill prefix on the new line, if typed at the beginning of a line. See The Fill Prefix.
The easy way to get rid of extra blank lines is with the command C-x C-o (delete-blank-lines). If point lies within a run of several blank lines, C-x C-o deletes all but one of them. If point is on a single blank line, C-x C-o deletes it. If point is on a nonblank line, C-x C-o deletes all following blank lines, if any exists.
延续线[编辑 | 编辑源代码]
Sometimes, a line of text in the buffer—a logical line—is too long to fit in the window, and Emacs displays it as two or more screen lines, or visual lines. This is called line wrapping or continuation, and the long logical line is called a continued line. On a graphical display, Emacs indicates line wrapping with small bent arrows in the left and right window fringes. On a text terminal, Emacs indicates line wrapping by displaying a ‘\’ character at the right margin.
Most commands that act on lines act on logical lines, not screen lines. For instance, C-k kills a logical line. As described earlier, C-n (next-line) and C-p (previous-line) are special exceptions: they move point down and up, respectively, by one screen line (see Changing the Location of Point).
Emacs can optionally truncate long logical lines instead of continuing them. This means that every logical line occupies a single screen line; if it is longer than the width of the window, the rest of the line is not displayed. On a graphical display, a truncated line is indicated by a small straight arrow in the right fringe; on a text terminal, it is indicated by a ‘$’ character in the right margin. See Line Truncation.
By default, continued lines are wrapped at the right window edge. Since the wrapping may occur in the middle of a word, continued lines can be difficult to read. The usual solution is to break your lines before they get too long, by inserting newlines. If you prefer, you can make Emacs insert a newline automatically when a line gets too long, by using Auto Fill mode. See Filling Text.
Sometimes, you may need to edit files containing many long logical lines, and it may not be practical to break them all up by adding newlines. In that case, you can use Visual Line mode, which enables word wrapping: instead of wrapping long lines exactly at the right window edge, Emacs wraps them at the word boundaries (i.e., space or tab characters) nearest to the right window edge. Visual Line mode also redefines editing commands such as C-a, C-n, and C-k to operate on screen lines rather than logical lines. See Visual Line Mode.
光标位置信息[编辑 | 编辑源代码]
Here are commands to get information about the size and position of parts of the buffer, and to count words and lines.
M-x what-line
Display the line number of point.
M-x line-number-mode
M-x column-number-mode
Toggle automatic display of the current line number or column number. See Optional Mode Line Features. If you want to have a line number displayed before each line, see Customization of Display.
M-=
Display the number of lines, sentences, words, and characters that are present in the region (count-words-region). See The Mark and the Region, for information about the region.
M-x count-words
Display the number of lines, sentences, words, and characters that are present in the buffer. If the region is active (see The Mark and the Region), display the numbers for the region instead.
C-x =
Display the character code of character after point, character position of point, and column of point (what-cursor-position).
M-x hl-line-mode
Enable or disable highlighting of the current line. See Displaying the Cursor.
M-x size-indication-mode
Toggle automatic display of the size of the buffer. See Optional Mode Line Features.
M-x what-line displays the current line number in the echo area. This command is usually redundant because the current line number is shown in the mode line (see The Mode Line). However, if you narrow the buffer, the mode line shows the line number relative to the accessible portion (see Narrowing). By contrast, what-line displays both the line number relative to the narrowed region and the line number relative to the whole buffer.
M-= (count-words-region) displays a message reporting the number of lines, sentences, words, and characters in the region (see The Mark and the Region, for an explanation of the region). With a prefix argument, C-u M-=, the command displays a count for the entire buffer.
The command M-x count-words does the same job, but with a different calling convention. It displays a count for the region if the region is active, and for the buffer otherwise.
The command C-x = (what-cursor-position) shows information about the current cursor position and the buffer contents at that position. It displays a line in the echo area that looks like this:
Char: c (99, #o143, #x63) point=28062 of 36168 (78%) column=53
After ‘Char:’, this shows the character in the buffer at point. The text inside the parenthesis shows the corresponding decimal, octal and hex character codes; for more information about how C-x = displays character information, see Introduction to International Character Sets. After ‘point=’ is the position of point as a character count (the first character in the buffer is position 1, the second character is position 2, and so on). The number after that is the total number of characters in the buffer, and the number in parenthesis expresses the position as a percentage of the total. After ‘column=’ is the horizontal position of point, in columns counting from the left edge of the window.
If the user option what-cursor-show-names is non-nil, the name of the character, as defined by the Unicode Character Database, is shown as well. The part in parentheses would then become:
(99, #o143, #x63, LATIN SMALL LETTER C)
If the buffer has been narrowed, making some of the text at the beginning and the end temporarily inaccessible, C-x = displays additional text describing the currently accessible range. For example, it might display this:
Char: C (67, #o103, #x43) point=252 of 889 (28%) <231-599> column=0
where the two extra numbers give the smallest and largest character position that point is allowed to assume. The characters between those two positions are the accessible ones. See Narrowing.
Related, but different feature is display-line-numbers-mode (see Customization of Display).
数值参数[编辑 | 编辑源代码]
In the terminology of mathematics and computing, argument means “data provided to a function or operation”. You can give any Emacs command a numeric argument (also called a prefix argument). Some commands interpret the argument as a repetition count. For example, giving C-f an argument of ten causes it to move point forward by ten characters instead of one. With these commands, no argument is equivalent to an argument of one, and negative arguments cause them to move or act in the opposite direction.
The easiest way to specify a numeric argument is to type a digit and/or a minus sign while holding down the Meta key. For example,
M-5 C-n
moves down five lines. The keys M-1, M-2, and so on, as well as M--, are bound to commands (digit-argument and negative-argument) that set up an argument for the next command. M-- without digits normally means −1.
If you enter more than one digit, you need not hold down the Meta key for the second and subsequent digits. Thus, to move down fifty lines, type
M-5 0 C-n
Note that this does not insert five copies of ‘0’ and move down one line, as you might expect—the ‘0’ is treated as part of the prefix argument.
(What if you do want to insert five copies of ‘0’? Type M-5 C-u 0. Here, C-u terminates the prefix argument, so that the next keystroke begins the command that you want to execute. Note that this meaning of C-u applies only to this case. For the usual role of C-u, see below.)
Instead of typing M-1, M-2, and so on, another way to specify a numeric argument is to type C-u (universal-argument) followed by some digits, or (for a negative argument) a minus sign followed by digits. A minus sign without digits normally means −1.
C-u alone has the special meaning of “four times”: it multiplies the argument for the next command by four. C-u C-u multiplies it by sixteen. Thus, C-u C-u C-f moves forward sixteen characters. Other useful combinations are C-u C-n, C-u C-u C-n (move down a good fraction of a screen), C-u C-u C-o (make sixteen blank lines), and C-u C-k (kill four lines).
You can use a numeric argument before a self-inserting character to insert multiple copies of it. This is straightforward when the character is not a digit; for example, C-u 6 4 a inserts 64 copies of the character ‘a’. But this does not work for inserting digits; C-u 6 4 1 specifies an argument of 641. You can separate the argument from the digit to insert with another C-u; for example, C-u 6 4 C-u 1 does insert 64 copies of the character ‘1’.
Some commands care whether there is an argument, but ignore its value. For example, the command M-q (fill-paragraph) fills text; with an argument, it justifies the text as well. (See Filling Text, for more information on M-q.) For these commands, it is enough to specify the argument with a single C-u.
Some commands use the value of the argument as a repeat count but do something special when there is no argument. For example, the command C-k (kill-line) with argument n kills n lines, including their terminating newlines. But C-k with no argument is special: it kills the text up to the next newline, or, if point is right at the end of the line, it kills the newline itself. Thus, two C-k commands with no arguments can kill a nonblank line, just like C-k with an argument of one. (See Killing and Moving Text, for more information on C-k.)
A few commands treat a plain C-u differently from an ordinary argument. A few others may treat an argument of just a minus sign differently from an argument of −1. These unusual cases are described when they come up; they exist to make an individual command more convenient, and they are documented in that command’s documentation string.
We use the term prefix argument to emphasize that you type such arguments before the command, and to distinguish them from minibuffer arguments (see The Minibuffer), which are entered after invoking the command.
On graphical displays, C-0, C-1, etc. act the same as M-0, M-1, etc.
重复命令[编辑 | 编辑源代码]
Many simple commands, such as those invoked with a single key or with M-x command-name RET, can be repeated by invoking them with a numeric argument that serves as a repeat count (see Numeric Arguments). However, if the command you want to repeat prompts for input, or uses a numeric argument in another way, that method won’t work.
The command C-x z (repeat) provides another way to repeat an Emacs command many times. This command repeats the previous Emacs command, whatever that was. Repeating a command uses the same arguments that were used before; it does not read new arguments each time.
To repeat the command more than once, type additional z’s: each z repeats the command one more time. Repetition ends when you type a character other than z or press a mouse button.
For example, suppose you type C-u 2 0 C-d to delete 20 characters. You can repeat that command (including its argument) three additional times, to delete a total of 80 characters, by typing C-x z z z. The first C-x z repeats the command once, and each subsequent z repeats it once again.
You can also activate repeat-mode which allows repeating commands bound to sequences of two or more keys by typing a single character. For example, after typing C-x u (undo, see Undo) to undo the most recent edits, you can undo many more edits by typing u u u…. Similarly, type C-x o o o… instead of C-x o C-x o C-x o… to switch to the window several windows away. This works by entering a transient repeating mode after you type the full key sequence that invokes the command; the single-key shortcuts are shown in the echo area.
Only some commands support repetition in repeat-mode; type M-x describe-repeat-maps RET to see which ones.
The single-character shortcuts enabled by the transient repeating mode do not need to be identical: for example, after typing C-x {, either { or } or ^ or v, or any series that mixes these characters in any order, will resize the selected window in respective ways. Similarly, after M-g n or M-g p, typing any sequence of n and/or p in any mix will repeat next-error and previous-error to navigate in a *compilation* or *grep* buffer (see Compilation Mode).
Typing any key other than those defined to repeat the previous command exits the transient repeating mode, and then the key you typed is executed normally. You can also define a key which will exit the transient repeating mode without executing the key which caused the exit. To this end, customize the user option repeat-exit-key to name a key; one natural value is RET. Finally, it’s possible to break the repetition chain automatically after some amount of idle time: customize the user option repeat-exit-timeout to specify the idle time in seconds after which this transient repetition mode will be turned off automatically.