目前我使用EnhancedCommentify
插件切换评论,特别是那两个命令
map <M-c> <plug>Comment
map <M-d> <plug>DeComment
但问题是,而不是评论像
这样的行____#I am a comment (_ in front is white space)
它将显示为
#____I am a comment
EnhancedCommentify
内部是否有快速解决此问题的方法?或其他方法来实现这一点,最好不要改变我目前的键绑定?感谢。
BTW :NerdTree
似乎不适用于我的vim版本,而且我不是root用户,所以......
答案 0 :(得分:1)
试试tComment。我用它,它支持vim 7.0。它允许您使用gc
动作在多个文件类型中进行评论。
gc{motion} :: Toggle comments (for small comments within one line the &filetype_inline style will be used, if defined) gcc :: Toggle comment for the current line gC{motion} :: Comment region gCc :: Comment the current line
如果您正在使用病原体,可以使用
进行安装cd ~/.vim/bundle; git clone "https://github.com/VimEz/tComment.git"
然后只需重新启动vim,你应该准备好了!