diff options
author | Teddy Wing | 2015-09-13 16:04:37 -0400 |
---|---|---|
committer | Teddy Wing | 2015-09-13 16:04:37 -0400 |
commit | 9e821d913b25cd07577dc08fa9db604c6cf2d84f (patch) | |
tree | 9afdf58385237bc8b3ea10a0668247f4a1808080 /plugin/grappele.vim | |
parent | 59e8032b2b31dc06c60842bbf975effec6820958 (diff) | |
download | vim-grappele-9e821d913b25cd07577dc08fa9db604c6cf2d84f.tar.bz2 |
plugin/grappele.vim: Fix <Plug> mapping definition
Should be mapping `<Plug>Grappele` to the function call. `G` doesn't
belong in this map call. That's what the one at the end is for.
Diffstat (limited to 'plugin/grappele.vim')
-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 11666e2..3237274 100644 --- a/plugin/grappele.vim +++ b/plugin/grappele.vim @@ -4,7 +4,7 @@ endif let g:loaded_grappele = 1 -nnoremap G <Plug>Grappele :<c-u>call grappele#Grappele() +nnoremap <Plug>Grappele :<c-u>call grappele#Grappele() if !hasmapto('<Plug>Grappele') || !maparg('G', 'n') nmap G <Plug>Grappele |