diff options
Diffstat (limited to 'bundle/spellcycle/plugin')
-rw-r--r-- | bundle/spellcycle/plugin/spellcycle.vim | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bundle/spellcycle/plugin/spellcycle.vim b/bundle/spellcycle/plugin/spellcycle.vim new file mode 100644 index 0000000..9ae3bfe --- /dev/null +++ b/bundle/spellcycle/plugin/spellcycle.vim @@ -0,0 +1,11 @@ +if exists('g:loaded_spellcycle') + finish +endif +let g:loaded_spellcycle = 1 + + +nnoremap <silent> <Plug>spellcycle_Left :<c-u>call spellcycle#Cycle(-1)<cr> +nnoremap <silent> <Plug>spellcycle_Right :<c-u>call spellcycle#Cycle(1)<cr> + +nmap [l <Plug>spellcycle_Left +nmap ]l <Plug>spellcycle_Right |