RST Tables : Allows to create and edit restructuredText tables easily
script karma |
Rating 54/26,
Downloaded by 1867 |
Comments, bugs, improvements
|
Vim wiki
|
created by |
Hugo Ruscitti |
|
script type |
utility |
|
description |
This plugin allows to create and edit restructuredText tables easily.
Its adds two new commands:
,,c -> Creates a new restructuredText table.
,,f -> Fix table columns in a table.
For example, if you have a paragraph with data like this:
nombre apellido edad
pepe zarate 28
toto garcia 29
you can press ",,c" to create a simple table:
+--------+----------+------+
| nombre | apellido | edad |
+========+==========+======+
| pepe | zarate | 28 |
+--------+----------+------+
| toto | garcia | 29 |
+--------+----------+------+
Now, if you change the table content, for example adding characters
to the first content row.
+--------+----------+------+
| nombre | apellido | edad |
+========+==========+======+
| Un nombre muy largo que rompe la tabla | zarate | 28 |
+--------+----------+------+
| toto | un appellido largo... | 29 |
+--------+----------+------+
you need to fix the columns widths. So, press ",,f" and you will gets:
+----------------------------------------+-----------------------+------+
| nombre | apellido | edad |
+========================================+=======================+======+
| Un nombre muy largo que rompe la tabla | zarate | 28 |
+----------------------------------------+-----------------------+------+
| toto | un appellido largo... | 29 |
+----------------------------------------+-----------------------+------+
|
|
install details |
Install the python extension to vim and then copy the file `rst_table.vim`
to the `.vim/plugin` directory in your home directory.
|
|
script versions (upload new version)
Click on the package to download.
ip used for rating: 3.15.189.231
|