Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add support for multi-line cell formatting. | Vincent Driessen | 2010-08-19 | 1 | -20/+42 |
| | | | | | | | | | | | | | | | | | 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 | +-----+---------------------+ | ||||
* | Add line partitioner. | Vincent Driessen | 2010-08-19 | 1 | -3/+34 |
| | | | | | | | | | | | | | | | | | | 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 | 2 | -4/+1 |
| | | | | 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 | 1 | -0/+4 |
| | |||||
* | Add join_rows helper function (necessary for joining long lines later on). | Vincent Driessen | 2010-08-19 | 1 | -0/+24 |
| | |||||
* | Add ability to remove all empty columns automatically. | Vincent Driessen | 2010-08-19 | 1 | -0/+18 |
| | |||||
* | Added ability to parse existing tables. | Vincent Driessen | 2010-08-19 | 1 | -4/+12 |
| | |||||
* | Deal with spaces at the end of the line. | Vincent Driessen | 2010-08-19 | 1 | -1/+1 |
| | |||||
* | Finish the CreateTable() function, now we're done with the details. | Vincent Driessen | 2010-08-19 | 1 | -16/+3 |
| | |||||
* | Fix: vim.buffer -> vim.current.buffer | Vincent Driessen | 2010-08-19 | 1 | -4/+4 |
| | |||||
* | Add main logic to creating RST tables. | Vincent Driessen | 2010-08-18 | 1 | -2/+135 |
| | |||||
* | Add initial files. | Vincent Driessen | 2010-08-18 | 2 | -0/+34 |