删除<++>在 Vim-Latex 中
我现在正在使用 Vim-Latex。但我有一个问题,当我每次输入 {***} 时,它都会附加 <++>自动地?我怎样才能禁用它?
此致,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我现在正在使用 Vim-Latex。但我有一个问题,当我每次输入 {***} 时,它都会附加 <++>自动地?我怎样才能禁用它?
此致,
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
要完全禁用占位符,请将
let g:Imap_UsePlaceHolders = 0
放入.vimrc
中。 (您也可以在运行时更改此设置,以便在需要时启用或禁用占位符。)有关此设置和其他类似设置的信息包含在 vim-latex 附带的(相当广泛的)帮助文件中,您应该可以通过
:help Latex-suite
(如果您已正确安装所有内容)。To completely disable the use of place-holders, put
let g:Imap_UsePlaceHolders = 0
in your.vimrc
. (You can also change this setting at runtime to enable or disable place-holders whenever you like.)Information on this and other similar settings is included in the (pretty extensive) help file accompanying vim-latex, which should be available to you through
:help latex-suite
(if you've got everything installed correctly).这些旨在作为跳转位置,因此您可以轻松地继续编辑而无需退出插入模式。要跳转到并替换下一个 <++>,请在插入或正常模式下键入 ctrl+j。
These are intended as jump-positions, so you can easily continue editing without exiting insert-mode. To jump to and replace the next <++>, type ctrl+j while in insert or normal mode.