From a0e32dbfec8e532ed18ac1c0d7cbda8c3b55e7e5 Mon Sep 17 00:00:00 2001 From: somini Date: Mon, 13 Jul 2015 02:08:42 +0100 Subject: [PATCH] Configurable skipping of mappings So far only on a single mapping --- plugin/supertab.vim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugin/supertab.vim b/plugin/supertab.vim index ba8f4dd..1267847 100644 --- a/plugin/supertab.vim +++ b/plugin/supertab.vim @@ -969,7 +969,9 @@ endfunction " }}} " Key Mappings {{{ " map a regular tab to ctrl-tab (note: doesn't work in console vim) - exec 'inoremap ' . g:SuperTabMappingTabLiteral . ' ' + if !exists("g:SuperTabSkipMappingTabLiteral") + exec 'inoremap ' . g:SuperTabMappingTabLiteral . ' ' + endif inoremap =ManualCompletionEnter()