sponsor Vim development Vim logo Vim Book Ad

RST Tables : Allows to create and edit restructuredText tables easily

 script karma  Rating 54/26, Downloaded by 1740  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.
 

rate this script Life Changing Helpful Unfulfilling 
script versions (upload new version)

Click on the package to download.

package script version date Vim version user release notes
rst_table.vim 0.1 2010-04-04 7.0 Hugo Ruscitti Initial upload
ip used for rating: 18.226.187.24

If you have questions or remarks about this site, visit the vimonline development pages. Please use this site responsibly.
Questions about Vim should go to the maillist. Help Bram help Uganda.
   
Vim at Github