blob: 9ae3bfead4ab6b44aab4981fad9f20488f3b4522 (
plain)
1
2
3
4
5
6
7
8
9
10
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
|