我的 vimrc 中有以下行来启用 Javascript 完成:
autocmd FileType javascript set omnifunc=javascriptcomplete#CompleteJS
问题是,如果我正在处理包含大量注释的 JS 文件,例如:
// draws the map and the pieces depending on the state of the game
Vim 从这些评论中挑选单词,例如draws
,map
等;并将它们视为可接受的代码建议,但显然不是。我怎样才能过滤掉它们?