添加书呆子树命令

发布于 2024-11-04 03:52:13 字数 141 浏览 1 评论 0原文

我想在节点树中添加一个命令。

例如,如果我按“c”,它必须在 NNERDTree 中执行“o”命令,并在 vim 中执行alternateplugin 的 :AS 命令。

我尝试在 vimrc 中使用 nmap 进行一些尝试,但没有成功

i wanto add a command in nodetree.

for example if i press 'c' it has to execute 'o' command in NNERDTree and :AS command of alternateplugin in vim.

i tried to do some tries with nmap in vimrc but i didn't managed to do it

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雪若未夕 2024-11-11 03:52:13

此映射应该可以执行这两个命令:

nmap c o <Bar> :AS<CR>

用于分隔多个命令,允许多个命令位于同一行。有关详细信息,请参阅 :help :\bar

我建议您避免重新映射 c,因为 c{motion} 是一个相当有用的内置 vim 命令(有关详细信息,请参阅 :help c) 。

This mapping should work to execute both commands:

nmap c o <Bar> :AS<CR>

<Bar> is used to separate multiple commands, allowing multiple commands on the same line. See :help :\bar for details.

I suggest that you avoid remapping c because c{motion} is a rather useful built-in vim command (see :help c for details).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文