aboutsummaryrefslogtreecommitdiffstats
path: root/src/base.vim
Commit message (Collapse)AuthorAgeFilesLines
* remove src and build.py since they are not usedVG2015-07-241-32/+0
|
* Revert "remove dependency to vim_bridge"VG2015-07-241-4/+4
| | | | | | | | This reverts commit c5d527d906cc0836c29d3733bde518929fda69eb. I revert since I modified files in src and run build.py, but previous modifications of the original author were made to rst_tables.vim directly so my modifications removed unicode character count bug correction.
* remove dependency to vim_bridgeVG2015-07-241-4/+4
|
* Implemented the "reflow" command.Vincent Driessen2010-08-201-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For example, if you have the following table in your source file: Type Message Foo I like bananas very much. Even so much that I adore them. Position your cursor in it and call ReformatTable(). This makes the following: +======+===========================================================+ | Type | Message | +======+===========================================================+ | Foo | I like bananas very much. Even so much that I adore them. | +------+-----------------------------------------------------------+ But if you don't like these kinds of long wrappings, you can now simply remove (or add, for that matter) some of the '='-signs from the top row, like this: +======+================================+ | Type | Message | +======+===========================================================+ | Foo | I like bananas very much. Even so much that I adore them. | +------+-----------------------------------------------------------+ And then, call ReflowTable(): +======+================================+ | Type | Message | +======+================================+ | Foo | I like bananas very much. Even | | | so much that I adore them. | +------+--------------------------------+ This fixed issue #1.
* Remove CreateTable().Vincent Driessen2010-08-191-3/+0
| | | | This implementation only needs ReformatTable(), also for creation.
* Credit Hugo Ruscitti, the original author of the RST for Vim plugin.Vincent Driessen2010-08-191-0/+4
|
* Add initial files.Vincent Driessen2010-08-181-0/+28