coolceph / vimrc

Best vimrc for CoolCeph team, used for C/C++, Python, PHP and Go.
https://github.com/coolceph/vimrc
GNU General Public License v2.0
62 stars 32 forks source link

doc: README.md should have a description list for every feature. #10

Open yuandong1222 opened 8 years ago

yuandong1222 commented 8 years ago

Such as NERDTree & Comment/UnComment.

I don't every feature, for example, I don't know what vim-surround or vim-repeat are used for.

ketor commented 8 years ago

Doc every feature will be a very big project. I will do this continuously.

vim-repeat is a supplement to default vim repeat by key '.', In most cases, you can ignore this feature. vim-surround is for fast operate (), """, '' {}.

A best practice for vim-surround is how to add double "" for hello world,

  1. Input: Hello World 2.Enter visual mode and select Hello World
  2. Enter shift+s, enter ", you will see "Hello World" 4.In normal mode, you can input cs"' to change "Hello World" to 'Hello World'.

That's all.