我如何使用tcomment(vim的插件),我怎么能说它已安装?

时间:2014-07-31 14:25:18

标签: vim vim-plugin

所以我决定学习如何以一种奇特的方式评论和取消注释代码。所以我尝试了vim插件tcomment。我googled我需要打开我用vim下载的vba文件并输入

:source %

我谷歌周围,但我仍然不知道如何运行该插件。在普通模式下输入什么来切换注释?只需简单的一行评论。我想不明白。我确信我安装了正确的插件,但我怎么能确定?

1 个答案:

答案 0 :(得分:4)

要确保已安装插件,您可以运行:scriptnames。这将列出所有已启用的插件和脚本(您正在寻找tcomment.vim)。

tComment的命令如下:

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

更多信息here

完整的文档是here