Vim中的行号


11

如何启用行号在Vim中显示?


研究您的搜索技能。此功能自的早期版本存在以来vi,即已有数十年的历史。在Internet上肯定有一些提及。
Ingo Karkat 2013年

Answers:


15

要启用行编号:

:set number

禁用它:

:set nonumber

4
简写形式相同::set nu:set nonu
与Hemant

7
哎呀,:se nu而且:se nonu如果你真的想剃个字符。但是,:set number:set nonumber是相当明确的,不是吗?
短暂


3

我发现绑定绑定以切换行号(以及其他功能)非常有用。可以如下配置

nnoremap <Leader>gn :setl number!<CR>:setl number?<CR>

第一个命令将切换当前缓冲区的行号(本地),第二个命令将在状态行上显示该选项的当前值。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.