<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vim-rst-tables/src, 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>2015-07-24T15:37:15Z</updated>
<entry>
<title>remove src and build.py since they are not used</title>
<updated>2015-07-24T15:37:15Z</updated>
<author>
<name>VG</name>
<email>vg@devys.org</email>
</author>
<published>2015-07-24T15:37:15Z</published>
<link rel='alternate' type='text/html' href='https://git.devys.org/vim-rst-tables/commit/?id=531ad8f2baa5fefdf2f92c6473d5098f4bbeb1b5'/>
<id>urn:sha1:531ad8f2baa5fefdf2f92c6473d5098f4bbeb1b5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Revert "remove dependency to vim_bridge"</title>
<updated>2015-07-24T15:34:41Z</updated>
<author>
<name>VG</name>
<email>vg@devys.org</email>
</author>
<published>2015-07-24T15:34:41Z</published>
<link rel='alternate' type='text/html' href='https://git.devys.org/vim-rst-tables/commit/?id=ab212a360ed1c0d10a1f6bf02beee28979a30922'/>
<id>urn:sha1:ab212a360ed1c0d10a1f6bf02beee28979a30922</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>remove dependency to vim_bridge</title>
<updated>2015-07-24T12:50:22Z</updated>
<author>
<name>VG</name>
<email>vg@devys.org</email>
</author>
<published>2015-07-24T12:50:22Z</published>
<link rel='alternate' type='text/html' href='https://git.devys.org/vim-rst-tables/commit/?id=c5d527d906cc0836c29d3733bde518929fda69eb'/>
<id>urn:sha1:c5d527d906cc0836c29d3733bde518929fda69eb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>when modifying a table maintain its current indentation</title>
<updated>2012-09-21T20:40:12Z</updated>
<author>
<name>Eric Davis</name>
<email>edavis@insanum.com</email>
</author>
<published>2012-09-21T20:40:12Z</published>
<link rel='alternate' type='text/html' href='https://git.devys.org/vim-rst-tables/commit/?id=18a7de511c6b53538e56a49c44e1812f6a9bdc17'/>
<id>urn:sha1:18a7de511c6b53538e56a49c44e1812f6a9bdc17</id>
<content type='text'>
this allows vim-rst-tables to be used inside an outliner like the vim votl plugin
</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>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>Credit Hugo Ruscitti, the original author of the RST for Vim plugin.</title>
<updated>2010-08-19T09:42:24Z</updated>
<author>
<name>Vincent Driessen</name>
<email>vincent@datafox.nl</email>
</author>
<published>2010-08-19T09:42:24Z</published>
<link rel='alternate' type='text/html' href='https://git.devys.org/vim-rst-tables/commit/?id=5aa925dac4e1dd14428e22893a3db5d1cf5306ed'/>
<id>urn:sha1:5aa925dac4e1dd14428e22893a3db5d1cf5306ed</id>
<content type='text'>
</content>
</entry>
</feed>
