blob: b21f4b7cbb88c288bc334d01dd2cbf1dee40c9f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
if exists('g:loaded_grappele')
finish
endif
let g:loaded_grappele = 1
nnoremap <silent> <Plug>Grappele :<c-u>call grappele#Grappele(v:count)<cr>
nnoremap <silent> <Plug>GrappeleRecall :<c-u>call grappele#Recall()<cr>
if !hasmapto('<Plug>Grappele') || !maparg('G', 'n')
nnoremap G :<c-u>call grappele#Grappele(v:count)<cr>
endif
if !hasmapto('<Plug>GrappeleRecall') || !maparg('gG', 'n')
nmap gG <Plug>GrappeleRecall
endif
|