mirror of
https://github.com/dhruvasagar/vim-table-mode.git
synced 2025-11-08 11:03:47 -05:00
Fix duplicate tags
This commit is contained in:
@@ -183,6 +183,8 @@ Overview:
|
||||
|table-mode-eval-formula-map| .......... Set the eval formula mapping
|
||||
|table-mode-echo-cell-map| ............. Set the echo cell mapping
|
||||
|table-mode-sort-map| .................. Set the table sort mapping
|
||||
|table-mode-tableize-map| .............. Set the tableize mapping
|
||||
|table-mode-tableize-d-map| ............ Set the tableize visual mapping
|
||||
|table-mode-syntax| .................... Control table mode syntax
|
||||
|table-mode-auto-align| ................ Set if the table mode should auto
|
||||
align as you type
|
||||
@@ -201,6 +203,10 @@ g:table_mode_disable_mappings *table-mode-disable-mappings*
|
||||
Use this option to disable default mappings: >
|
||||
let g:table_mode_disable_mappings = 1
|
||||
<
|
||||
g:table_mode_disable_tableize_mappings *table-mode-disable-tableize-mappings*
|
||||
Disables mappings for tableize. >
|
||||
let g:table_mode_disable_tableize_mappings = 0
|
||||
<
|
||||
g:table_mode_corner *table-mode-corner*
|
||||
Use this option to define the table corner character: >
|
||||
let g:table_mode_corner = '+'
|
||||
@@ -270,10 +276,6 @@ g:table_mode_align_char *table-mode-align-char*
|
||||
alignments for columns in the table header border. >
|
||||
let g:table_mode_align_char = ':'
|
||||
<
|
||||
g:table_mode_disable_mappings *table-mode-disable-mappings*
|
||||
Set this to true to disable all mappings. >
|
||||
let g:table_mode_disable_mappings = 1
|
||||
<
|
||||
g:table_mode_motion_up_map *table-mode-motion-up-map*
|
||||
Set this to configure the mapping to move up a cell vertically. >
|
||||
let g:table_mode_motion_up_map = '{<Bar>'
|
||||
@@ -364,10 +366,6 @@ g:table_mode_update_time *table-mode-update-time*
|
||||
combination with |table-mode-auto-align|. >
|
||||
let g:table_mode_update_time = 500
|
||||
<
|
||||
g:table_mode_disable_tableize_mappings *table-mode-disable-tableize-mappings*
|
||||
Disables mappings for tableize. >
|
||||
let g:table_mode_disable_tableize_mappings = 0
|
||||
<
|
||||
g:table_mode_tableize_auto_border *table-mode-tableize-auto-border*
|
||||
Enables adding row borders to tables when created using tableize. >
|
||||
let g:table_mode_tableize_auto_border = 0
|
||||
@@ -444,7 +442,6 @@ MAPPINGS *table-mode-mappings*
|
||||
formula line and update the table accordingly. This invokes the
|
||||
|TableEvalFormulaLine| command.
|
||||
|
||||
|
||||
*table-mode-mappings-sort-column*
|
||||
`<Leader>ts`: Sort a column under the cursor. This invokes |TableSort|
|
||||
|
||||
|
||||
Reference in New Issue
Block a user