diff options
author | Adam Coddington <me@adamcoddington.net> | 2014-08-10 22:42:51 -0700 |
---|---|---|
committer | Adam Coddington <me@adamcoddington.net> | 2014-08-10 22:42:51 -0700 |
commit | 4dea9e676b124ee235e7573c42a9de8c4d81cee5 (patch) | |
tree | 51b427788f2a610279fbf4d6bbcad0bd07c066f9 | |
parent | aa4573f2ca1614eeaab6ae18705ebd3dc7361524 (diff) | |
download | vim-rst-tables-4dea9e676b124ee235e7573c42a9de8c4d81cee5.tar.gz vim-rst-tables-4dea9e676b124ee235e7573c42a9de8c4d81cee5.tar.bz2 vim-rst-tables-4dea9e676b124ee235e7573c42a9de8c4d81cee5.zip |
Adding a note to the readme indicating how to re-flow a table; instructions gleaned from 4422e1fbb74a85fd7167d9506c837cdfd09311ee.
-rw-r--r-- | README.rst | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -23,6 +23,10 @@ Installation Usage ----- + +Creating a new table +~~~~~~~~~~~~~~~~~~~~ + 1. Open a reStructuredText file 2. Create some kind of table outline:: @@ -53,3 +57,16 @@ Usage +----------+---------------------------------------------------------+ This is paragraph text *after* the table. + + +Re-flowing an existing table +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Sometimes, you may have a column that contains enough data that your +table is a little hard to work with. To fix that kind of problem, +you can define the column width you would prefer, and re-flow your table. + +1. Change the number of "==" signs in the top row of your table to match + the column widths you would prefer. +2. Put your cursor somewhere in the table. +3. Press ``,,f`` to re-flow the table. |