diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e55914..a10a3e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # 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 * Added feature to allow Table-Mode to work within comments. Uses 'commentstring' option of vim to identify comments, so it should work for @@ -17,7 +21,7 @@ * Bug Fixes #2, #3 & #4 ## 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. ## Version 2.1 : diff --git a/README.md b/README.md index f2b60fb..7f08530 100644 --- a/README.md +++ b/README.md @@ -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 the mapping `T` with a `[count]` to apply it to the next `[count]` 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 diff --git a/doc/table-mode.txt b/doc/table-mode.txt index f87c78c..80a6618 100644 --- a/doc/table-mode.txt +++ b/doc/table-mode.txt @@ -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 commands. The motions 'hjkl' follow the prefix are in accordance to 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*