diff options
| author | VG <vg@devys.org> | 2015-07-24 17:34:41 +0200 | 
|---|---|---|
| committer | VG <vg@devys.org> | 2015-07-24 17:34:41 +0200 | 
| commit | ab212a360ed1c0d10a1f6bf02beee28979a30922 (patch) | |
| tree | 41153ff1f43ca2d0ddddc6dace5b5105c715935e /src | |
| parent | c5d527d906cc0836c29d3733bde518929fda69eb (diff) | |
| download | vim-rst-tables-ab212a360ed1c0d10a1f6bf02beee28979a30922.tar.gz vim-rst-tables-ab212a360ed1c0d10a1f6bf02beee28979a30922.tar.bz2 vim-rst-tables-ab212a360ed1c0d10a1f6bf02beee28979a30922.zip  | |
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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/base.vim | 8 | ||||
| -rw-r--r-- | src/rst_tables.py | 3 | 
2 files changed, 7 insertions, 4 deletions
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 <silent> <leader><leader>c :python reformat_table()<CR> +    if !hasmapto('ReformatTable(') +        noremap <silent> <leader><leader>c :call ReformatTable()<CR>      endif -    if !hasmapto(' reflow_table(') -        noremap <silent> <leader><leader>f :python reflow_table()<CR> +    if !hasmapto('ReflowTable(') +        noremap <silent> <leader><leader>f :call ReflowTable()<CR>      endif  endif diff --git a/src/rst_tables.py b/src/rst_tables.py index a2cfc43..50f5b3b 100644 --- a/src/rst_tables.py +++ b/src/rst_tables.py @@ -1,6 +1,7 @@  import vim  import re  import textwrap +from vim_bridge import bridged  def get_table_bounds(): @@ -254,6 +255,7 @@ def draw_table(indent, table, manual_widths=None):      return output +@bridged  def reformat_table():      upper, lower, indent = get_table_bounds()      slice = vim.current.buffer[upper - 1:lower] @@ -262,6 +264,7 @@ def reformat_table():      vim.current.buffer[upper - 1:lower] = slice +@bridged  def reflow_table():      upper, lower, indent = get_table_bounds()      slice = vim.current.buffer[upper - 1:lower]  | 
