From 59e8032b2b31dc06c60842bbf975effec6820958 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 13 Sep 2015 16:00:45 -0400 Subject: Initial commit. Project setup. * Basic setup for the plugin: * `loaded` global * Create mapping definition based on style from tpope and System Copy * Create dummy function in autoload --- plugin/grappele.vim | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 plugin/grappele.vim (limited to 'plugin') diff --git a/plugin/grappele.vim b/plugin/grappele.vim new file mode 100644 index 0000000..11666e2 --- /dev/null +++ b/plugin/grappele.vim @@ -0,0 +1,11 @@ +if exists('g:loaded_grappele') + finish +endif +let g:loaded_grappele = 1 + + +nnoremap G Grappele :call grappele#Grappele() + +if !hasmapto('Grappele') || !maparg('G', 'n') + nmap G Grappele +endif -- cgit v1.2.3