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