aboutsummaryrefslogtreecommitdiffstats
path: root/src/base.vim
diff options
context:
space:
mode:
authorVG <vg@devys.org>2015-07-24 17:37:15 +0200
committerVG <vg@devys.org>2015-07-24 17:37:15 +0200
commit531ad8f2baa5fefdf2f92c6473d5098f4bbeb1b5 (patch)
treefad0bcc078b735bd08120f0f02b3a73c1d763d6b /src/base.vim
parentab212a360ed1c0d10a1f6bf02beee28979a30922 (diff)
downloadvim-rst-tables-531ad8f2baa5fefdf2f92c6473d5098f4bbeb1b5.tar.gz
vim-rst-tables-531ad8f2baa5fefdf2f92c6473d5098f4bbeb1b5.tar.bz2
vim-rst-tables-531ad8f2baa5fefdf2f92c6473d5098f4bbeb1b5.zip
remove src and build.py since they are not used
Diffstat (limited to 'src/base.vim')
-rw-r--r--src/base.vim32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/base.vim b/src/base.vim
deleted file mode 100644
index 037a9dd..0000000
--- a/src/base.vim
+++ /dev/null
@@ -1,32 +0,0 @@
-"
-" reStructuredText tables plugin
-" Language: Python (ft=python)
-" Maintainer: Vincent Driessen <vincent@datafox.nl>
-" Version: Vim 7 (may work with lower Vim versions, but not tested)
-" URL: http://github.com/nvie/vim-rst-tables
-"
-" This plugin is a more flexible reimplementation of the ideas and the
-" existing Vim plugin by Hugo Ruscitti:
-" http://www.vim.org/scripts/script.php?script_id=3041
-"
-
-" Only do this when not done yet for this buffer
-if exists("g:loaded_rst_tables_ftplugin")
- finish
-endif
-let loaded_rst_tables_ftplugin = 1
-
-python << endpython
-__PYTHON_SOURCE__
-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('ReformatTable(')
- noremap <silent> <leader><leader>c :call ReformatTable()<CR>
- endif
- if !hasmapto('ReflowTable(')
- noremap <silent> <leader><leader>f :call ReflowTable()<CR>
- endif
-endif