vim 我可以使用哪些选项?
示例
如果您不知道应该使用哪些选项,则可能对该:options命令感兴趣。
这将打开一个列出所有Vim选项并显示其当前值的拆分。有26个部分显示您可以尝试的所有选项。
例如
4 displaying textscroll number of lines to scroll for CTRL-U and CTRL-D
(local to window)
set scr=20
scrolloff number of screen lines to show around the cursor
set so=5
wrap long lines wrap
set nowrap wrap
...
在值行(例如set nowrap)上,您可以按CR切换值(如果它是二进制值)。在选项行(例如wrap long line wrap)上,您可以按CR访问此选项的文档。
以上是 vim 我可以使用哪些选项? 的全部内容, 来源链接: utcz.com/z/340691.html