mirror of
https://github.com/dhruvasagar/vim-table-mode.git
synced 2025-11-16 06:53:46 -05:00
- Added table cell text object. - Added api to delete table row. - Added api to delete table column. - Updated doc/table-mode.txt - Updated CHANGELOG.md
1.5 KiB
1.5 KiB
Change Log
Version 2.4.0
- Added Table Cell text object.
- Added api to delete entire table row.
- Added api to delete entire table column.
Version 2.3.0
- Refactored realignment logic. Generating borders by hand.
Version 2.2.2
- Added mapping for realigning table columns.
- Added table motions to move around in the table.
Version 2.2.1
- Added feature to allow Table-Mode to work within comments. Uses 'commentstring' option of vim to identify comments, so it should work for most filetypes as long as 'commentstring' option has been set. This is usually done appropriately in filetype plugins.
Version 2.2
- Improved :Tableize to now accept a {pattern} just like :Tabular to match the delimiter.
Version 2.1.3 :
- Bug Fix #1, added new option
g:table_mode_no_border_paddingwhich removes padding from the border.
Version 2.1.2 :
- Bug Fixes #2, #3 & #4
Version 2.1.1 :
- Added option
g:table_mode_alignto allow setting Tabular format option for more control on how Tabular aligns text.
Version 2.1 :
- VIM loads plugins in alphabetical order and so table-mode would be loaded before Tabularize which it depends on. Hence Moved plugin into an after plugin. Checking if Tabularize is available and finish immidiately if it's not.
Version 2.0 :
- Moved bulk of code to autoload for vimscript optimisation.
Version 1.1 :
- Added Tableize command and mapping to convert existing content into a table.
Version 1.0 :
- First stable release, create tables as you type.