如何为 :tabnew、:tabn、:tabp 创建快捷方式?

发布于 2024-11-19 04:26:32 字数 179 浏览 3 评论 0原文

在vim中,我想将 :tabnew 缩短为 :tn, :tabp:th, < code>:tabn 到 :tl 位于我的 .vimrc 中。知道如何重新映射这样的命令吗?

In vim, I'd like to shorten :tabnew to :tn, :tabp to :th, :tabn to :tl somewhere in my .vimrc. Any idea how I would remap commands like this?

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

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

发布评论

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

评论(7

俯瞰星空 2024-11-26 04:26:32

使用 cabbrev

ca tn tabnew
ca th tabp
ca tl tabn

Use cabbrev:

ca tn tabnew
ca th tabp
ca tl tabn
夏末 2024-11-26 04:26:32

您可以将以下代码添加到 ~/.vimrc 文件中,并轻松地浏览选项卡。

nnoremap th  :tabfirst<CR>
nnoremap tj  :tabnext<CR>
nnoremap tk  :tabprev<CR>
nnoremap tl  :tablast<CR>
nnoremap tt  :tabedit<Space>
nnoremap tn  :tabnext<Space>
nnoremap tm  :tabm<Space>
nnoremap td  :tabclose<CR>

you can add the following code in to the ~/.vimrc file and navigate through the tabs every easily.

nnoremap th  :tabfirst<CR>
nnoremap tj  :tabnext<CR>
nnoremap tk  :tabprev<CR>
nnoremap tl  :tablast<CR>
nnoremap tt  :tabedit<Space>
nnoremap tn  :tabnext<Space>
nnoremap tm  :tabm<Space>
nnoremap td  :tabclose<CR>
空名 2024-11-26 04:26:32

Daniel Kullmann 指出当前接受的答案是危险的。

如果您使用ca tn tabnew,则每当您键入字符串th时,它都可能会意外扩展。

例如, :!ls /tmp/tn/ 将扩展为 :!ls /tmp/tabnew/

这个答案没有遇到同样的问题。使用它看起来像这样:

cnoreabbrev <expr> tn getcmdtype() == ":" && getcmdline() == 'tn' ? 'tabnew' : 'tn'
cnoreabbrev <expr> th getcmdtype() == ":" && getcmdline() == 'th' ? 'tabp' : 'th'
cnoreabbrev <expr> tl getcmdtype() == ":" && getcmdline() == 'tl' ? 'tabn' : 'tl'
cnoreabbrev <expr> te getcmdtype() == ":" && getcmdline() == 'te' ? 'tabedit' : 'te'

这些自定义确保扩展仅在命令上完成,而不是在其他地方完成。

Daniel Kullmann points out the currently accepted answer is dangerous.

If you use ca tn tabnew, anytime you type the string th, it can expand unexpectedly.

For example, :!ls /tmp/tn/ will expand into :!ls /tmp/tabnew/

The approach listed in this answer does not suffer the same problem. Using it would look like this:

cnoreabbrev <expr> tn getcmdtype() == ":" && getcmdline() == 'tn' ? 'tabnew' : 'tn'
cnoreabbrev <expr> th getcmdtype() == ":" && getcmdline() == 'th' ? 'tabp' : 'th'
cnoreabbrev <expr> tl getcmdtype() == ":" && getcmdline() == 'tl' ? 'tabn' : 'tl'
cnoreabbrev <expr> te getcmdtype() == ":" && getcmdline() == 'te' ? 'tabedit' : 'te'

Those customizations ensure the expansion is done only on the commands and nowhere else.

再浓的妆也掩不了殇 2024-11-26 04:26:32

有更好的方法在选项卡之间导航。
尝试一下(C 代表 Control):

nmap <silent> <C-n> :tabnext<CR>
nmap <silent> <C-p> :tabprev<CR>
imap <silent> <C-n> <esc><C-n>
imap <silent> <C-p> <esc><C-p>

There is better way to navigate among tabs.
Just try (C is for Control):

nmap <silent> <C-n> :tabnext<CR>
nmap <silent> <C-p> :tabprev<CR>
imap <silent> <C-n> <esc><C-n>
imap <silent> <C-p> <esc><C-p>
笑咖 2024-11-26 04:26:32
"To create a new tab
nnoremap <C-t> :tabnew<Space>
inoremap <C-t> <Esc>:tabnew<Space>

"Tab Navigation
nnoremap <S-h> gT
nnoremap <S-l> gt
"To create a new tab
nnoremap <C-t> :tabnew<Space>
inoremap <C-t> <Esc>:tabnew<Space>

"Tab Navigation
nnoremap <S-h> gT
nnoremap <S-l> gt
归途 2024-11-26 04:26:32

如果您想保留此处建议的相同映射,https://stackoverflow.com/a/17269521/2743772 ,并且不想使用其他建议,请尝试在开头添加领导者,这样它就不会覆盖 "t",当然除非您已经有了这些确切的内容映射其他东西。

nnoremap <Leader>th  :tabfirst<CR>
nnoremap <Leader>tj  :tabnext<CR>
nnoremap <Leader>tk  :tabprev<CR>
nnoremap <Leader>tl  :tablast<CR>
nnoremap <Leader>tt  :tabedit<Space>
nnoremap <Leader>tn  :tabnext<Space>
nnoremap <Leader>tm  :tabm<Space>
nnoremap <Leader>td  :tabclose<CR>

If you want to keep the same mapping that is suggested here, https://stackoverflow.com/a/17269521/2743772, and don't want to use other suggestions, try adding leader to the beginning and this way it doesn't overwrite "t", unless of course you already have these exact mappings for something else.

nnoremap <Leader>th  :tabfirst<CR>
nnoremap <Leader>tj  :tabnext<CR>
nnoremap <Leader>tk  :tabprev<CR>
nnoremap <Leader>tl  :tablast<CR>
nnoremap <Leader>tt  :tabedit<Space>
nnoremap <Leader>tn  :tabnext<Space>
nnoremap <Leader>tm  :tabm<Space>
nnoremap <Leader>td  :tabclose<CR>
-小熊_ 2024-11-26 04:26:32

默认情况下,Ctrl + PageUpCtrl + PageDown 在选项卡之间移动。

快捷方式不得由终端绑定才能正常工作。
(我使用的是 Ubuntu 18.04)。

Ctrl + PageUp and Ctrl + PageDown move between tabs by default.

The shortcuts must not be bind by the terminal for this to work.
(I am on Ubuntu 18.04).

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