From 3013d6afbe4ca23de1571579082d325b44fef4d5 Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Wed, 18 Aug 2010 14:11:51 +0200 Subject: Add initial files. --- ftplugin/rst_tables.vim | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 ftplugin/rst_tables.vim (limited to 'ftplugin/rst_tables.vim') diff --git a/ftplugin/rst_tables.vim b/ftplugin/rst_tables.vim new file mode 100644 index 0000000..c847c70 --- /dev/null +++ b/ftplugin/rst_tables.vim @@ -0,0 +1,34 @@ +" +" reStructuredText tables plugin +" Language: Python (ft=python) +" Maintainer: Vincent Driessen +" Version: Vim 7 (may work with lower Vim versions, but not tested) +" URL: http://github.com/nvie/vim-rst-tables +" + +" 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 +import vim +import os +import os.path +from vim_bridge import bridged + + + +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 c :call CreateTable() + endif + if !hasmapto('ReformatTable(') + noremap f :call ReformatTable() + endif +endif -- cgit v1.2.3