<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vim-rst-tables/tests, branch master</title>
<subtitle>[fork] https://github.com/nvie/vim-rst-tables with custom modifications</subtitle>
<id>https://git.devys.org/vim-rst-tables/atom?h=master</id>
<link rel='self' href='https://git.devys.org/vim-rst-tables/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.devys.org/vim-rst-tables/'/>
<updated>2010-08-23T12:11:46Z</updated>
<entry>
<title>Fix: typo in test.</title>
<updated>2010-08-23T12:11:46Z</updated>
<author>
<name>Vincent Driessen</name>
<email>vincent@datafox.nl</email>
</author>
<published>2010-08-23T12:11:46Z</published>
<link rel='alternate' type='text/html' href='https://git.devys.org/vim-rst-tables/commit/?id=a2b3c97e70fa1a76886061e01265bf669426b345'/>
<id>urn:sha1:a2b3c97e70fa1a76886061e01265bf669426b345</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bugfix for table output.</title>
<updated>2010-08-20T12:50:27Z</updated>
<author>
<name>Vincent Driessen</name>
<email>vincent@datafox.nl</email>
</author>
<published>2010-08-20T12:50:27Z</published>
<link rel='alternate' type='text/html' href='https://git.devys.org/vim-rst-tables/commit/?id=78043a12ca1abcb8050f572c9d861df181c14671'/>
<id>urn:sha1:78043a12ca1abcb8050f572c9d861df181c14671</id>
<content type='text'>
Apparently, RST requires the first line of tables to be drawn with
minuses, not equal signs.
</content>
</entry>
<entry>
<title>Implemented the "reflow" command.</title>
<updated>2010-08-20T08:27:41Z</updated>
<author>
<name>Vincent Driessen</name>
<email>vincent@datafox.nl</email>
</author>
<published>2010-08-20T08:27:41Z</published>
<link rel='alternate' type='text/html' href='https://git.devys.org/vim-rst-tables/commit/?id=4422e1fbb74a85fd7167d9506c837cdfd09311ee'/>
<id>urn:sha1:4422e1fbb74a85fd7167d9506c837cdfd09311ee</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>Add support for multi-line cell formatting.</title>
<updated>2010-08-19T14:38:23Z</updated>
<author>
<name>Vincent Driessen</name>
<email>vincent@datafox.nl</email>
</author>
<published>2010-08-19T14:37:33Z</published>
<link rel='alternate' type='text/html' href='https://git.devys.org/vim-rst-tables/commit/?id=135878107d87873bc2f539fe2d4dd0c179c757de'/>
<id>urn:sha1:135878107d87873bc2f539fe2d4dd0c179c757de</id>
<content type='text'>
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 |
+-----+---------------------+
</content>
</entry>
<entry>
<title>Fixed the last failing test (stupid line ending bug).</title>
<updated>2010-08-19T13:42:53Z</updated>
<author>
<name>Vincent Driessen</name>
<email>vincent@datafox.nl</email>
</author>
<published>2010-08-19T13:42:53Z</published>
<link rel='alternate' type='text/html' href='https://git.devys.org/vim-rst-tables/commit/?id=d8c457c07b22b16290878150a22f22330964f843'/>
<id>urn:sha1:d8c457c07b22b16290878150a22f22330964f843</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add line partitioner.</title>
<updated>2010-08-19T10:21:08Z</updated>
<author>
<name>Vincent Driessen</name>
<email>vincent@datafox.nl</email>
</author>
<published>2010-08-19T10:21:08Z</published>
<link rel='alternate' type='text/html' href='https://git.devys.org/vim-rst-tables/commit/?id=f84c47622786b654f2dfbe2e6d79b7f269a91a06'/>
<id>urn:sha1:f84c47622786b654f2dfbe2e6d79b7f269a91a06</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>Remove CreateTable().</title>
<updated>2010-08-19T09:43:03Z</updated>
<author>
<name>Vincent Driessen</name>
<email>vincent@datafox.nl</email>
</author>
<published>2010-08-19T09:43:03Z</published>
<link rel='alternate' type='text/html' href='https://git.devys.org/vim-rst-tables/commit/?id=81c52547b08e24b2be35ddca47167527e958fa6e'/>
<id>urn:sha1:81c52547b08e24b2be35ddca47167527e958fa6e</id>
<content type='text'>
This implementation only needs ReformatTable(), also for creation.
</content>
</entry>
<entry>
<title>Add join_rows helper function (necessary for joining long lines later on).</title>
<updated>2010-08-19T09:38:50Z</updated>
<author>
<name>Vincent Driessen</name>
<email>vincent@datafox.nl</email>
</author>
<published>2010-08-19T09:36:53Z</published>
<link rel='alternate' type='text/html' href='https://git.devys.org/vim-rst-tables/commit/?id=4c81fb1df579143bdd1ec7f5b2a1779d3c3c58fd'/>
<id>urn:sha1:4c81fb1df579143bdd1ec7f5b2a1779d3c3c58fd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add helper to set the fake vim cursor in tests.</title>
<updated>2010-08-19T08:51:16Z</updated>
<author>
<name>Vincent Driessen</name>
<email>vincent@datafox.nl</email>
</author>
<published>2010-08-19T08:51:16Z</published>
<link rel='alternate' type='text/html' href='https://git.devys.org/vim-rst-tables/commit/?id=c72ce15d5941aaa3384a1a160996b0c92ec0efef'/>
<id>urn:sha1:c72ce15d5941aaa3384a1a160996b0c92ec0efef</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add ability to remove all empty columns automatically.</title>
<updated>2010-08-19T08:49:51Z</updated>
<author>
<name>Vincent Driessen</name>
<email>vincent@datafox.nl</email>
</author>
<published>2010-08-19T08:49:51Z</published>
<link rel='alternate' type='text/html' href='https://git.devys.org/vim-rst-tables/commit/?id=bc3620adf956828562071f9feafc5923de567ea9'/>
<id>urn:sha1:bc3620adf956828562071f9feafc5923de567ea9</id>
<content type='text'>
</content>
</entry>
</feed>
