当我在MacVim中编辑html和xhtml文件时,有时我需要注释嵌入的 css 样式,因此当我尝试切换到备用分隔符集 ( ca ) 时,插件会警告我:
NERDCommenter:不能使用替代分隔符,没有指定
我的问题是:
如何指定这些替代分隔符?
当我在MacVim中编辑html和xhtml文件时,有时我需要注释嵌入的 css 样式,因此当我尝试切换到备用分隔符集 ( ca ) 时,插件会警告我:
NERDCommenter:不能使用替代分隔符,没有指定
我的问题是:
如何指定这些替代分隔符?
将这些行添加到我的.vimrc:
let g:NERDCustomDelimiters = {
\ 'html': { 'left': '<!-- ', 'right': '-->', 'leftAlt': '/*','rightAlt': '*/' },
\ 'xhtml': { 'left': '<!-- ', 'right': '-->', 'leftAlt': '/*','rightAlt': '*/'},
\}
let NERD_html_alt_style=1
注意:不要忘记花括号后面的逗号!!:)
这些可以在 config 变量中指定g:NERDCustomDelimiters
(在获取插件之前,例如在您的~/.vimrc
):
:let g:NERDCustomDelimiters = {
\ 'html': { 'left': '<!-- ', 'right': '-->', 'leftAlt': '/*', 'rightAlt': '*/' }
\ }