diff options
author | Teddy Wing | 2015-09-16 23:09:51 -0400 |
---|---|---|
committer | Teddy Wing | 2015-09-16 23:09:51 -0400 |
commit | 6feb0b0be638e2a4d28ef58106dccfdc3c183278 (patch) | |
tree | 77239cfb92b1ce3ce0cf2ca2b6b5a7ac13187e1e /plugin | |
parent | 060c56a29f70e90450cf43f85fac37b08fd5324b (diff) | |
download | vim-grappele-6feb0b0be638e2a4d28ef58106dccfdc3c183278.tar.bz2 |
plugin/grappele.vim: Silence `G` mapping
Don't output the mapping result in the command line when using the `G`
command.
Was handling this prevously with the `<Plug>Grappele` mapping but not
with the new one that I added in
07a75d523eadaf1027aa8bf287256602ad05f97f.
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/grappele.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/grappele.vim b/plugin/grappele.vim index b21f4b7..f02e46c 100644 --- a/plugin/grappele.vim +++ b/plugin/grappele.vim @@ -8,7 +8,7 @@ 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> + nnoremap <silent> G :<c-u>call grappele#Grappele(v:count)<cr> endif if !hasmapto('<Plug>GrappeleRecall') || !maparg('gG', 'n') |