Make repeatable in visual mode

This commit is contained in:
Junegunn Choi
2013-12-06 02:11:57 +09:00
parent 9271fc3f8f
commit 6d85e93476
3 changed files with 39 additions and 2 deletions

View File

@@ -83,6 +83,15 @@ try these commands:
Notice that the commands are repeatable with `.` key if you have installed
[repeat.vim](https://github.com/tpope/vim-repeat).
If you want to repeat the previous alignment for the selected range in visual
mode, install [visualrepeat](https://github.com/vim-scripts/visualrepeat)
(recommended) or add the following mapping to your .vimrc.
```vim
" Repeat alignment in visual mode with . key
vmap . <Plug>(EasyAlignRepeat)
```
Usage
-----