Releasing v2.1.1

- Moved some code around for better readability.
- Added new option g:table_mode_align for allowing the user to set the
  format option for aligning the text, this is passed directly to
  Tabular.
- Updated vim doc.
- Updated README.md
This commit is contained in:
Dhruva Sagar
2013-03-21 08:44:26 +05:30
parent f23737d5fa
commit f8610cebdb
5 changed files with 77 additions and 62 deletions

View File

@@ -56,6 +56,7 @@ Overview:
|table-mode-options-toggle-map| ...... Set table mode toggle mapping
|table-mode-options-always-active| ... Set table mode to always enabled
|table-mode-options-delimiter| ....... Set the delimiter for Tableize
|table-mode-options-align| ........... Set the text alignment for Tableize
g:table_mode_loaded *table-mode-options-loaded*
Use this option to disable the plugin: >
@@ -104,6 +105,11 @@ g:table_mode_delimiter *table-mode-options-delimiter*
Use this option to define the delimiter which used by
|table-mode-commands-tableize|
g:table_mode_align *table-mode-options-align*
Use this option to define the format for text alignment to be used for
the tables. Go through |tabular-walkthrough| for details on how to set
the format options for alignment. >
let g:table_mode_align = 'l1'
===============================================================================
MAPPINGS *table-mode-mappings*

View File

@@ -15,6 +15,7 @@ table-mode-mappings table-mode.txt /*table-mode-mappings*
table-mode-mappings-toggle table-mode.txt /*table-mode-mappings-toggle*
table-mode-mappings-trigger table-mode.txt /*table-mode-mappings-trigger*
table-mode-options table-mode.txt /*table-mode-options*
table-mode-options-align table-mode.txt /*table-mode-options-align*
table-mode-options-always-active table-mode.txt /*table-mode-options-always-active*
table-mode-options-border table-mode.txt /*table-mode-options-border*
table-mode-options-corner table-mode.txt /*table-mode-options-corner*