nvie / vim-rst-tables

Easily create and reformat your RST (reStructuredText) tables as you change cell content.
121 stars 36 forks source link

Example yields an error #13

Closed untitaker closed 11 years ago

untitaker commented 11 years ago

Running the example gives me the following error:

Error detected while processing function ReflowTable:
line    7:
Traceback (most recent call last):
  File "<string>", line 3, in <module>
  File "<string>", line 279, in reflow_table
  File "<string>", line 194, in get_column_widths_from_border_spec
RuntimeError: Cannot reflow this table. Top table border not found.
nvie commented 11 years ago

The first line of a table must be a line with [+=-] signs, so the plugin knows the intended cell widths.

untitaker commented 11 years ago

Please fix the example then.

Does the last line need a row of +/= signs?

EDIT: Disregard that.