" " 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 " " 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(' reformat_table(') noremap c :python reformat_table() endif if !hasmapto(' reflow_table(') noremap f :python reflow_table() endif endif