diff options
author | Teddy Wing | 2015-09-13 16:29:35 -0400 |
---|---|---|
committer | Teddy Wing | 2015-09-13 16:29:35 -0400 |
commit | edbfd44a582cd6c8782c097f0a021d70d0de5ec0 (patch) | |
tree | 432a985af151ccafb2d8fee3c99708531ef6e0ed /plugin | |
parent | 059cffa4d69ecfde1c13268413b92bef1de4f4d1 (diff) | |
download | vim-grappele-edbfd44a582cd6c8782c097f0a021d70d0de5ec0.tar.bz2 |
plugin/grappele.vim: Silence mapping
Otherwise the mapped command is printed on the command line which isn't
necessary and adds visual noise and distraction.
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 64d24b5..a4fd3fa 100644 --- a/plugin/grappele.vim +++ b/plugin/grappele.vim @@ -4,7 +4,7 @@ endif let g:loaded_grappele = 1 -nnoremap <Plug>Grappele :<c-u>call grappele#Grappele(v:count)<cr> +nnoremap <silent> <Plug>Grappele :<c-u>call grappele#Grappele(v:count)<cr> if !hasmapto('<Plug>Grappele') || !maparg('G', 'n') nmap G <Plug>Grappele |