diff options
author | Vincent Driessen <vincent@datafox.nl> | 2010-08-19 11:43:03 +0200 |
---|---|---|
committer | Vincent Driessen <vincent@datafox.nl> | 2010-08-19 11:43:03 +0200 |
commit | 81c52547b08e24b2be35ddca47167527e958fa6e (patch) | |
tree | eab1270a7712e9e1234363061271d85cfb19f210 /src | |
parent | 5aa925dac4e1dd14428e22893a3db5d1cf5306ed (diff) | |
download | vim-rst-tables-81c52547b08e24b2be35ddca47167527e958fa6e.tar.gz vim-rst-tables-81c52547b08e24b2be35ddca47167527e958fa6e.tar.bz2 vim-rst-tables-81c52547b08e24b2be35ddca47167527e958fa6e.zip |
Remove CreateTable().
This implementation only needs ReformatTable(), also for creation.
Diffstat (limited to 'src')
-rw-r--r-- | src/base.vim | 3 | ||||
-rw-r--r-- | src/rst_tables.py | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/src/base.vim b/src/base.vim index 980bc5e..46bdb05 100644 --- a/src/base.vim +++ b/src/base.vim @@ -23,9 +23,6 @@ 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('CreateTable(') - noremap <silent> <leader><leader>c :call CreateTable()<CR> - endif if !hasmapto('ReformatTable(') noremap <silent> <leader><leader>f :call ReformatTable()<CR> endif diff --git a/src/rst_tables.py b/src/rst_tables.py index 3fb8923..7273b8d 100644 --- a/src/rst_tables.py +++ b/src/rst_tables.py @@ -168,7 +168,7 @@ def draw_table(table): @bridged -def create_table(): +def reformat_table(): upper, lower = get_table_bounds() slice = vim.current.buffer[upper - 1:lower] table = parse_table(slice) |