From ab212a360ed1c0d10a1f6bf02beee28979a30922 Mon Sep 17 00:00:00 2001 From: VG Date: Fri, 24 Jul 2015 17:34:41 +0200 Subject: Revert "remove dependency to vim_bridge" This reverts commit c5d527d906cc0836c29d3733bde518929fda69eb. I revert since I modified files in src and run build.py, but previous modifications of the original author were made to rst_tables.vim directly so my modifications removed unicode character count bug correction. --- src/base.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/base.vim') diff --git a/src/base.vim b/src/base.vim index 282f4e0..037a9dd 100644 --- a/src/base.vim +++ b/src/base.vim @@ -23,10 +23,10 @@ endpython " Add mappings, unless the user didn't want this. " The default mapping is registered, unless the user remapped it already. if !exists("no_plugin_maps") && !exists("no_rst_table_maps") - if !hasmapto(' reformat_table(') - noremap c :python reformat_table() + if !hasmapto('ReformatTable(') + noremap c :call ReformatTable() endif - if !hasmapto(' reflow_table(') - noremap f :python reflow_table() + if !hasmapto('ReflowTable(') + noremap f :call ReflowTable() endif endif -- cgit v1.2.3