在Vim中,我喜欢这个功能,允许您在启动注释块后自动插入注释.你怎么做才能在换行符之后得到一个评论字符,但是在获得第二个换行符时,评论被删除,你开始一个没有评论字符的换行符.如果您正在处理注释块并且之后不想再发表评论(在我的情况下我也想将相同的内容应用于markdown列表,将* / – 视为注释字符),这将非常有用.
例如
// typing a comment // (cursor here after hitting enter once)
和
// typing a comment (cursor here after hitting enter twice)
该映射检查当前行是否仅包含评论领导者,然后决定它是否< C-u>.或者< CR>:
原文链接:/bash/386992.htmlinoremap <expr> <CR> getline(".") =~ '^\s*\(\*\|//\|#\|"\)\s*$' ? "\<C-u>" : "\<CR>"