From 9e821d913b25cd07577dc08fa9db604c6cf2d84f Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 13 Sep 2015 16:04:37 -0400 Subject: plugin/grappele.vim: Fix mapping definition Should be mapping `Grappele` to the function call. `G` doesn't belong in this map call. That's what the one at the end is for. --- plugin/grappele.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 Grappele :call grappele#Grappele() +nnoremap Grappele :call grappele#Grappele() if !hasmapto('Grappele') || !maparg('G', 'n') nmap G Grappele -- cgit v1.2.3