nvie / vim-rst-tables

Easily create and reformat your RST (reStructuredText) tables as you change cell content.
121 stars 36 forks source link

add vim_bridge as a submodule for easy installation #5

Closed jtriley closed 9 years ago

jtriley commented 13 years ago

Moved everything in ftplugin/* to ftplugin/rst/* and added vim_bridge project as a submodule. This way users don't have to be root to install vim_bridge and also don't need to create a virtualenv necessarily. Instead they can now do:

$ git clone git://github.com/nvie/vim-rst-tables.git $ cd vim-rst-tables $ git submodule init $ git submodule update

That will pull in vim_bridge under ftplugin/rst/vim_bridge. I modified rst_tables.vim slightly to insert that path into the PYTHONPATH so that vim_bridge can be imported from that location. Of course, users can always skip this and go back to the traditional route if they prefer....