mirror of
https://github.com/amix/vimrc
synced 2025-06-16 01:25:00 +08:00
Updated plugins
This commit is contained in:
@ -39,9 +39,23 @@ Vim command sequence: `df[$r,0f,v<C-n>…<C-n>c<CR><Up><Del><Right><Right><Right
|
||||
To see what keystrokes are used for the above examples, see [the wiki page](https://github.com/terryma/vim-multiple-cursors/wiki/Keystrokes-for-example-gifs).
|
||||
|
||||
## Installation
|
||||
Install using [Pathogen], [Vundle], [Neobundle], or your favorite Vim package manager.
|
||||
Install using [Pathogen], [Vundle], [Neobundle], [vim-plug], or your favorite Vim package manager.
|
||||
|
||||
Requires vim 7.4 or later for full functionality.
|
||||
Requires vim 7.4 or newer for full functionality.
|
||||
|
||||
### vim-plug instructions
|
||||
|
||||
1. Paste this block into the top of `~/.vimrc`.
|
||||
|
||||
```vim script
|
||||
call plug#begin()
|
||||
|
||||
Plug 'terryma/vim-multiple-cursors'
|
||||
|
||||
call plug#end()
|
||||
```
|
||||
|
||||
2. Start vim and execute `:PlugInstall`.
|
||||
|
||||
## Quick Start
|
||||
### normal mode / visual mode
|
||||
@ -213,4 +227,5 @@ Obviously inspired by Sublime Text's [multiple selection][sublime-multiple-selec
|
||||
[Pathogen]:http://github.com/tpope/vim-pathogen
|
||||
[Vundle]:http://github.com/gmarik/vundle
|
||||
[Neobundle]:http://github.com/Shougo/neobundle.vim
|
||||
[vim-plug]:https://github.com/junegunn/vim-plug
|
||||
[emacs-multiple-cursors]:https://github.com/magnars/multiple-cursors.el
|
||||
|
Reference in New Issue
Block a user