if exists('g:loaded_grappele') finish endif let g:loaded_grappele = 1 nnoremap Grappele :call grappele#Grappele(v:count) nnoremap GrappeleRecall :call grappele#Recall('n') vnoremap GrappeleRecall :call grappele#Recall('v') onoremap GrappeleRecall :call grappele#Recall('o') if !hasmapto('Grappele') || !maparg('G', 'n') nnoremap G :call grappele#Grappele(v:count) endif if !hasmapto('GrappeleRecall') || !maparg('gG', 'n') nmap gG GrappeleRecall endif if !hasmapto('GrappeleRecall') || !maparg('gG', 'v') vmap gG GrappeleRecall endif if !hasmapto('GrappeleRecall') || !maparg('gG', 'o') omap gG GrappeleRecall endif