1

本教程给出了这个例子:

<leader>c$ |NERDComEOLComment|
Comments the current line from the cursor to the end of line. 

但是在 vim 中按\c$or,c$会复制当前行并切换到插入模式。

我已经通过病原体安装了插件并且:help nerdcommenter确实可以工作,但是在 的输出中没有提到 nerdcommenter :scripts,不知道这是否意味着插件没有成功安装。

4

1 回答 1

1

这看起来不错。以下是一些故障排除提示:

  1. 检查:scriptnames输出.../plugin/NERD_commenter.vim;它需要在那里。
  2. 查看:echo loaded_nerd_comments
  3. 查看:echo g:NERDCreateDefaultMappings
  4. 查看:nmap <Leader>c
  5. 其他映射是否有效?定义:nmap <Leader>x :echomsg "Works"<CR>并按下\x
  6. 如果映射不起作用,您可能不小心遇到了:set paste. 撤消:set nopaste
于 2016-08-23T14:06:57.050 回答