blob: 64d24b527fff53f30bf6a6b81eacdde956c6056d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
if exists('g:loaded_grappele')
finish
endif
let g:loaded_grappele = 1
nnoremap <Plug>Grappele :<c-u>call grappele#Grappele(v:count)<cr>
if !hasmapto('<Plug>Grappele') || !maparg('G', 'n')
nmap G <Plug>Grappele
endif
|