Updated documentation

This commit is contained in:
Dhruva Sagar
2013-05-01 02:30:24 +05:30
parent 241d0ccba0
commit 599a39c28d
3 changed files with 12 additions and 2 deletions

View File

@@ -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 :

View File

@@ -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

View File

@@ -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*