VimPlugin: vim-table-mode: Difference between revisions

From wikinotes
Line 34: Line 34:
| aaaaaaa | bbb | ccc |
| aaaaaaa | bbb | ccc |
</syntaxhighlight>
</syntaxhighlight>
== Formulas ==
<blockquote>
It could be my setup, but I've found formulas a bit buggy.
* duplicating formulas on <code><leader>tfa</code>
* incorrect sums
</blockquote><!-- Formulas -->
</blockquote><!-- Usage -->
</blockquote><!-- Usage -->

Revision as of 22:48, 5 November 2023

Markdown/ReStructuredText spreadsheet-like tables supporting cell formulas and alignment.

Documentation

github https://github.com/dhruvasagar/vim-table-mode
:help table-mode https://github.com/dhruvasagar/vim-table-mode/blob/master/doc/table-mode.txt

Usage

<leader>tm  " toggle enable/disable table-mode
<leader>ts  " sort by column under cursor
||          " (at start of table row) creates a table-break
| foo | bar | baz |  " <<- press enter, followed by '||'

" generates:
" ==========
| foo | bar | baz |
|-----+-----+-----+  " <<- tadaa

" following lines will auto-adjust their width
" ============================================
| foo     | bar | baz |
|---------+-----+-----+
| aaaaaaa | bbb | ccc |

Formulas

It could be my setup, but I've found formulas a bit buggy.

  • duplicating formulas on <leader>tfa
  • incorrect sums