Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove print statement used for debugging | Jorge Scandaliaris | 2015-04-24 | 1 | -1/+0 |
| | |||||
* | Fix wrong table width when non-ascii characters are present | Jorge Scandaliaris | 2015-04-24 | 1 | -5/+13 |
| | |||||
* | Merge pull request #21 from coddingtonbear/master | Vincent Driessen | 2014-08-31 | 1 | -0/+17 |
|\ | | | | | Adds a note to the readme indicating how to re-flow a table. | ||||
| * | Adding a note to the readme indicating how to re-flow a table; instructions ↵ | Adam Coddington | 2014-08-10 | 1 | -0/+17 |
|/ | | | | gleaned from 4422e1fbb74a85fd7167d9506c837cdfd09311ee. | ||||
* | Merge pull request #20 from 0x20h/patch-1 | Vincent Driessen | 2014-01-29 | 1 | -2/+2 |
|\ | | | | | Update README.rst | ||||
| * | Update README.rst | Jan Kohlhof | 2014-01-28 | 1 | -2/+2 |
|/ | | | I think it should be `,,c` for creation, `,,f` for reformatting, correct? | ||||
* | Merge pull request #18 from kri5/master | Vincent Driessen | 2013-08-14 | 1 | -1/+1 |
|\ | | | | | Add check to be able to create a top page table | ||||
| * | Add check to be able to create a top page table | Christophe Courtaut | 2013-08-14 | 1 | -1/+1 |
|/ | | | | | This commit adds a check for top boundary, so if the table goes up to the top of the document, it will be correctly detected. | ||||
* | Merge pull request #14 from insanum/master | Vincent Driessen | 2013-03-30 | 2 | -20/+24 |
|\ | | | | | when modifying a table maintain its current indentation | ||||
| * | when modifying a table maintain its current indentation | Eric Davis | 2012-09-21 | 2 | -20/+24 |
|/ | | | | this allows vim-rst-tables to be used inside an outliner like the vim votl plugin | ||||
* | Merge pull request #10 from erisian/patch-1 | Vincent Driessen | 2012-03-29 | 1 | -6/+3 |
|\ | | | | | Fix rendering of README. Thanks, @erisian! | ||||
| * | Remove code-block directives, use :: for examples instead, to satisfy ↵ | erisian | 2012-03-27 | 1 | -6/+3 |
|/ | | | | GitHub's renderer. | ||||
* | Merge pull request #7 from choplin/master | Vincent Driessen | 2011-10-01 | 1 | -2/+12 |
|\ | | | | | Support tables containing East Asian languages, too. | ||||
| * | fixed bug : doesn't work properly with East Asian Language | choplin | 2011-10-01 | 1 | -2/+12 |
|/ | | | | calculate string length as unicode type, not str type | ||||
* | Fix URL | Vincent Driessen | 2010-12-06 | 1 | -1/+1 |
| | |||||
* | Fix: wrong markup language :) | Vincent Driessen | 2010-12-06 | 1 | -1/+3 |
| | |||||
* | Add stillmaintained status. | Vincent Driessen | 2010-12-06 | 1 | -0/+3 |
| | |||||
* | Fix: typo in test. | Vincent Driessen | 2010-08-23 | 1 | -1/+1 |
| | |||||
* | Bugfix for table output. | Vincent Driessen | 2010-08-20 | 3 | -14/+14 |
| | | | | | Apparently, RST requires the first line of tables to be drawn with minuses, not equal signs. | ||||
* | Implemented the "reflow" command. | Vincent Driessen | 2010-08-20 | 5 | -9/+168 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | Fix key mapping. | Vincent Driessen | 2010-08-19 | 1 | -1/+1 |
| | |||||
* | Add support for multi-line cell formatting. | Vincent Driessen | 2010-08-19 | 3 | -42/+130 |
| | | | | | | | | | | | | | | | | | For example, when given the following table: [['Foo', 'Bar'], ['x', 'This is a long line\nthat is spread out\nover multiple lines']] It will render as: +=====+=====================+ | Foo | Bar | +=====+=====================+ | x | This is a long line | | | that is spread out | | | over multiple lines | +-----+---------------------+ | ||||
* | Fixed the last failing test (stupid line ending bug). | Vincent Driessen | 2010-08-19 | 1 | -3/+6 |
| | |||||
* | Add line partitioner. | Vincent Driessen | 2010-08-19 | 3 | -11/+85 |
| | | | | | | | | | | | | | | | | | | Is able to parse tables of the form: +=====+=====================+ | Foo | Bar | +=====+=====================+ | x | This is a long line | | | that is spread out | | | over multiple lines | +-----+---------------------+ Into: [['Foo', 'Bar'], ['x', 'This is a long line\nthat is spread out\nover multiple lines']] The draw_table function needs to be written still, though. | ||||
* | Remove CreateTable(). | Vincent Driessen | 2010-08-19 | 3 | -6/+3 |
| | | | | This implementation only needs ReformatTable(), also for creation. | ||||
* | Credit Hugo Ruscitti, the original author of the RST for Vim plugin. | Vincent Driessen | 2010-08-19 | 2 | -4/+9 |
| | |||||
* | Add join_rows helper function (necessary for joining long lines later on). | Vincent Driessen | 2010-08-19 | 3 | -1/+77 |
| | |||||
* | Add helper to set the fake vim cursor in tests. | Vincent Driessen | 2010-08-19 | 1 | -2/+4 |
| | |||||
* | Add ability to remove all empty columns automatically. | Vincent Driessen | 2010-08-19 | 5 | -11/+63 |
| | |||||
* | Use fixtures to make the tests more readable. | Vincent Driessen | 2010-08-19 | 2 | -22/+28 |
| | |||||
* | Fix tutorial. | Vincent Driessen | 2010-08-19 | 1 | -10/+13 |
| | |||||
* | Added ability to parse existing tables. | Vincent Driessen | 2010-08-19 | 3 | -8/+56 |
| | |||||
* | Deal with spaces at the end of the line. | Vincent Driessen | 2010-08-19 | 4 | -2/+8 |
| | |||||
* | Add a simple tutorial. | Vincent Driessen | 2010-08-19 | 1 | -0/+54 |
| | |||||
* | Finish the CreateTable() function, now we're done with the details. | Vincent Driessen | 2010-08-19 | 2 | -32/+6 |
| | |||||
* | Ignore *.pyc files. | Vincent Driessen | 2010-08-19 | 1 | -0/+1 |
| | |||||
* | Fix: vim.buffer -> vim.current.buffer | Vincent Driessen | 2010-08-19 | 3 | -15/+15 |
| | |||||
* | Add main logic to creating RST tables. | Vincent Driessen | 2010-08-18 | 5 | -9/+412 |
| | |||||
* | Change test root. | Vincent Driessen | 2010-08-18 | 2 | -0/+16 |
| | |||||
* | Add initial files. | Vincent Driessen | 2010-08-18 | 5 | -0/+139 |