Vim plugins

Following vim plugins are used by me.

  • cs
    change the surrounding character in normal mode.
    Syntax : cs<old_surrounding><new-surrounding>
    Example: text is "Hello world", use command cs"*, the text is changed to *Hello world*.
    Note: Not all characters can be old_surrounding. Usually, ', ", [, {, ( are allowed.
  • ds
    delete the surrounding character in normal mode.
    Syntax : ds<surrounding>
    Example: text is "Hello world", use command ds", the text is changed to Hello world.
  • ys
    add a surrounding character to a text object in normal mode.
    Syntax: ys<text_object><surrounding>
    Example:text is Hello, use command ysiw", the text is changed to "Hello".
  • s
    Select some text in visual mode, press key "s" and input surrounding character(s). Then the selected text is enclosed with that specific character(s). Tag can be inserted.

Solution: Comment out following two lines in file autoclose.vim:

inoremap <silent> <Esc> <C-R>=<SID>CloseStackPop('')<CR><Esc>
inoremap <silent> <C-[> <C-R>=<SID>CloseStackPop('')<CR><C-[>
  • taglist
    http://www.vim.org/scripts/script.php?script_id=273
    "The "Tag List" plugin is a source code browser plugin for Vim and provides an overview of the structure of source code files and allows you to efficiently browse through source code files for different programming languages. "
  • Asciidoc plugin
    This plugin can be used to write document in asciidoc format.
vim
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License