我只知道使用寄存器的一个实例是通过CtrlR*,从中我从剪贴板粘贴文本。

寄存器的其他用途是什么?如何使用它们?

你所知道的关于VI寄存器的一切(让我们关注VI 7.2)——分享给我们。


当前回答

我最喜欢的寄存器是':'寄存器。在正常模式下运行@:可以重复之前运行的ex命令。

所以我们可以用MY_commandXXXXX来验证一些命令,然后把MY_commandXXXXX放在vimrc中

其他回答

关于寄存器,我最喜欢的部分之一是将它们用作宏!

假设你正在处理一个以制表符分隔的值文件:

ID  Df  %Dev    Lambda
1   0   0.000000    0.313682
2   1   0.023113    0.304332
3   1   0.044869    0.295261
4   1   0.065347    0.286460
5   1   0.084623    0.277922
6   1   0.102767    0.269638
7   1   0.119845    0.261601

现在您决定需要在%Dev字段的末尾添加一个百分比符号(从第二行开始)。我们将在(任意选择的)m寄存器中创建一个简单的宏,如下所示:

按:qm:开始记录m寄存器下的宏。 EE:转到第三列的末尾。 a:插入模式,附加到该列的末尾。 %:输入要添加的百分号。 <ESC>:返回命令模式。 j0:转到下一行的开头。 q:停止录制宏

现在我们只需输入@m在当前行上运行这个宏。此外,我们可以输入@@来重复,或者输入100@m来重复100次!生活看起来还不错。

这时,您应该说:“但是这与寄存器有什么关系呢?”

优秀的点。让我们通过输入“mp”来研究m寄存器的内容。然后我们得到以下结果:

EEa%<ESC>j0

乍一看,这看起来像你不小心在记事本中打开了一个二进制文件,但乍一看,这是我们宏中的字符序列!

你是一个好奇的人,所以让我们做一些有趣的事情,编辑这一行文本插入一个!而不是无聊的老%。

EEa!<ESC>j0

然后让我们输入B"nyE "把它拉进n寄存器。然后,只是为了好玩,让我们使用@n....在数据行上运行n宏

它加了一个!

本质上,运行宏就像按下宏寄存器中精确的键序列。如果这不是一个很酷的收银机戏法,我就把帽子吃了。

我的朋友布莱恩写了一篇关于这方面的全面文章。我认为这是一个很好的介绍如何使用主题。https://www.brianstorti.com/vim-registers/

如果你想在ex-mode命令中粘贴寄存器的内容,点击<C-r><寄存器字母>。

你为什么要用这个?我想对一个较长的字符串进行搜索和替换,所以我在可视模式下选择了它,开始输入搜索/替换表达式:%s/[PASTE YANKED PHRASE]//g,然后继续我的一天。

如果你只想在ex模式下粘贴一个单词,可以在进入ex模式前确保光标在它上面,然后在ex模式下点击<C-r><C-w>来粘贴单词。

为了更方便:

cnoremap <c-g> <c-r>"
cnoremap <C-Right> <c-r><c-w>

来自vim的帮助页面:

CTRL-R {0-9a-z"%#:-=.}                  *c_CTRL-R* *c_<C-R>*
        Insert the contents of a numbered or named register.  Between
        typing CTRL-R and the second character '"' will be displayed
        <...snip...>
        Special registers:
            '"' the unnamed register, containing the text of
                the last delete or yank
            '%' the current file name
            '#' the alternate file name
            '*' the clipboard contents (X11: primary selection)
            '+' the clipboard contents
            '/' the last search pattern
            ':' the last command-line
            '-' the last small (less than a line) delete
            '.' the last inserted text
                            *c_CTRL-R_=*
            '=' the expression register: you are prompted to
                enter an expression (see |expression|)
                (doesn't work at the expression prompt; some
                things such as changing the buffer or current
                window are not allowed to avoid side effects)
                When the result is a |List| the items are used
                as lines.  They can have line breaks inside
                too.
                When the result is a Float it's automatically
                converted to a String.
        See |registers| about registers.  {not in Vi}
        <...snip...>

一个很大的混淆来源是默认寄存器”。了解它的工作方式是很重要的。如果在大多数情况下避免使用默认寄存器,情况会好得多。来自Vim文档的解释:

Vim fills this register with text deleted with the "d", "c", "s", "x" commands
or copied with the yank "y" command, regardless of whether or not a specific
register was used (e.g.  "xdd).  This is like the unnamed register is pointing
to the last used register.

所以默认寄存器实际上是指向最后使用的寄存器的指针。当你删除或拉取某个东西时,这个寄存器将指向其他寄存器。您可以通过检查寄存器来验证这一点。总有另一个寄存器与默认寄存器完全相同:yank寄存器(“0”),第一个删除寄存器(“1”),小删除寄存器(“-”)或任何其他用于删除或删除的寄存器。

唯一的例外是黑洞寄存器。Vim doc说:

An exception is the '_' register: "_dd does not store the deleted text in any
register.

通常,直接使用“0”、“-”和“1-”9默认寄存器或命名寄存器会更好。