mirror of
https://github.com/dhruvasagar/vim-table-mode.git
synced 2025-11-08 11:03:47 -05:00
Updated documentation
This commit is contained in:
@@ -1,4 +1,8 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
## Version 2.2.2
|
||||||
|
* Added mapping for realigning table columns.
|
||||||
|
* Added table motions to move around in the table.
|
||||||
|
|
||||||
## Version 2.2.1
|
## Version 2.2.1
|
||||||
* Added feature to allow Table-Mode to work within comments. Uses
|
* Added feature to allow Table-Mode to work within comments. Uses
|
||||||
'commentstring' option of vim to identify comments, so it should work for
|
'commentstring' option of vim to identify comments, so it should work for
|
||||||
@@ -17,7 +21,7 @@
|
|||||||
* Bug Fixes #2, #3 & #4
|
* Bug Fixes #2, #3 & #4
|
||||||
|
|
||||||
## Version 2.1.1 :
|
## Version 2.1.1 :
|
||||||
* Added option g:table_mode_align to allow setting Tabular format option for
|
* Added option `g:table_mode_align` to allow setting Tabular format option for
|
||||||
more control on how Tabular aligns text.
|
more control on how Tabular aligns text.
|
||||||
|
|
||||||
## Version 2.1 :
|
## Version 2.1 :
|
||||||
|
|||||||
@@ -58,6 +58,10 @@ sure Tabular is installed and loaded into your runtime to ensure this works.
|
|||||||
`:line1,line2Tableize`, but this is not that intuitive. You can also use
|
`:line1,line2Tableize`, but this is not that intuitive. You can also use
|
||||||
the mapping `<Leader>T` with a `[count]` to apply it to the next `[count]`
|
the mapping `<Leader>T` with a `[count]` to apply it to the next `[count]`
|
||||||
lines in usual vim style.
|
lines in usual vim style.
|
||||||
|
- Move between cells :
|
||||||
|
|
||||||
|
Now you can move between cells using table mode motions. Check `:h
|
||||||
|
table-mode-motion-prefix` for more details.
|
||||||
|
|
||||||
### Demo
|
### Demo
|
||||||
|
|
||||||
|
|||||||
@@ -154,7 +154,9 @@ g:table_mode_motion_prefix *table-mode-motion-prefix*
|
|||||||
You can move to the next / previous row / column using the motion
|
You can move to the next / previous row / column using the motion
|
||||||
commands. The motions 'hjkl' follow the prefix are in accordance to
|
commands. The motions 'hjkl' follow the prefix are in accordance to
|
||||||
standard vim character motions to make them easier to remember. They
|
standard vim character motions to make them easier to remember. They
|
||||||
may also be preceeded with a [count].
|
may also be preceeded with a [count]. The 'h', 'l' (left and right
|
||||||
|
motions) wrap around the table row and move to the previous rows last
|
||||||
|
column, next rows first column respectively if one exists.
|
||||||
===============================================================================
|
===============================================================================
|
||||||
MAPPINGS *table-mode-mappings*
|
MAPPINGS *table-mode-mappings*
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user