显示 Vim 变量

发布于 2024-12-04 11:46:35 字数 370 浏览 1 评论 0原文

可能的重复:
获取 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 技术交流群。

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

发布评论

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

评论(2

九厘米的零° 2024-12-11 11:46:35
:set tw?

或者如果您也想知道它的设置位置

:verbose set tw?

以获得更多设置乐趣

:options
:set tw?

or if you want to know where it is set as well

:verbose set tw?

For even more setting fun

:options
山川志 2024-12-11 11:46:35

除了接受的答案之外,您还可以使用 :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 with verbose.

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