vim:添加评论宏

时间:2010-10-25 13:55:11

标签: vim

Vim对我来说几乎是完美的。但我仍然想要一个行注释和块注释功能,我想知道如何编写一个vimrc来在python和javascript中执行此操作。

无插件

3 个答案:

答案 0 :(得分:4)

答案 1 :(得分:3)

如果你想要c风格的行注释(我认为在javascript中是合法的),你可以在.vimrc中设置以下内容,它将注释掉光标(正常模式)当前所在的行。

map \lo I/*<Esc>A*/<Esc>

如果您想要python评论,可以执行以下操作:

map \lo I#<Esc>

如果你只想要一个陈述,你可以这样做:

if match(expand("%:t"), ".py") != -1
  map \lo I#<Esc>
else
  map \lo I/*<Esc>A*/<Esc>
endif
如果您正在编辑.py文件,

将使用#comment,否则使用/ * ... * / comment。

编辑:以下函数将通过检查文件类型注释具有适当样式注释的可视选择块。然后,您可以将其映射到类似于函数后面的vmap语句之类的内容。

  function! BlockComment(top,bottom)

    " deal with filetypes that don't have block comments 
    let fileName = expand("%:t")
    echo fileName

    if fileName =~ "\.py" || fileName =~ "\.sh" || fileName =~ "\.pl"
        execute "normal I# "
        return
    elseif fileName =~ "\.vim"
        execute 'normal I" '
        return
    endif

    " for c-style block comments (should work for javascript)
    let topLine = line("'<")

    " the + 1 is because we're inserting a new line above the top line
    let bottomLine = line("'>") + 1

    " this gets called as a range, so if we've already done it once we need to
    " bail
    let checkLine = getline(topLine - 1)
    if (checkLine =~ '\/\*')
        return
    endif

    let topString = "normal " . topLine . "GO/*"
    let bottomString = "normal " . bottomLine . "Go*/"

    execute topString
    execute bottomString

  endfunction

  vmap <Leader>bco<CR> :call BlockComment()<CR>

忽略古怪的语法突出显示。似乎语法高亮显示不是vimscript感知。

答案 2 :(得分:1)

tcomment提供了一个与vim工作方式完全集成的运算符: http://www.vim.org/scripts/script.php?script_id=1173

它支持的注释风格比已经提到过的nerdcomment少。