显示 Vim 变量
可能的重复:
获取 Vim 中设置的当前值
我知道你可以使用 :set
更改 Vim 设置,并且您可以设置配置文件 ~/.vimrc
但我遇到了一些问题,使其与 MacVim 一起使用我希望能够显示什么Vim 环境变量是。
是否有像 :show tw
这样的命令或类似的命令可以做到这一点?
谢谢。
Possible Duplicate:
Get current value of a setting in Vim
I know that you can use :set
to change Vim settings and that you can set up a configuration file ~/.vimrc
but I'm running into some issues getting this to work with MacVim and I want to be able to display what a Vim environment variable is.
Is there a command like :show tw
or something like this that will do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者如果您也想知道它的设置位置
以获得更多设置乐趣
or if you want to know where it is set as well
For even more setting fun
除了接受的答案之外,您还可以使用
:echo &tw
。这样做的优点是您不会因忘记添加
?
而意外设置布尔选项。缺点是您不能将此方法与 verbose 一起使用。In addition to the accepted answer you may also use
:echo &tw
.This has the advantage that you can't accidentally set a boolean option by forgetting to add the
?
. The disadvantage is that you cannot use this method withverbose
.