diff options
Diffstat (limited to 'plugin/grappele.vim')
-rw-r--r-- | plugin/grappele.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugin/grappele.vim b/plugin/grappele.vim index a4fd3fa..a86c02a 100644 --- a/plugin/grappele.vim +++ b/plugin/grappele.vim @@ -5,7 +5,12 @@ 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') nmap G <Plug>Grappele endif + +if !hasmapto('<Plug>GrappeleRecall') || !maparg('gG', 'n') + nmap gG <Plug>GrappeleRecall +endif |