Fix duplicate tags

This commit is contained in:
Dhruva Sagar
2024-03-14 00:09:19 +05:30
parent 5f2f94096b
commit e4365bde02

View File

@@ -183,13 +183,15 @@ Overview:
|table-mode-eval-formula-map| .......... Set the eval formula mapping |table-mode-eval-formula-map| .......... Set the eval formula mapping
|table-mode-echo-cell-map| ............. Set the echo cell mapping |table-mode-echo-cell-map| ............. Set the echo cell mapping
|table-mode-sort-map| .................. Set the table sort 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-syntax| .................... Control table mode syntax
|table-mode-auto-align| ................ Set if the table mode should auto |table-mode-auto-align| ................ Set if the table mode should auto
align as you type align as you type
|table-mode-tableize-auto-border| ...... Set if tableize adds row borders |table-mode-tableize-auto-border| ...... Set if tableize adds row borders
|table-mode-ignore-align| .............. Set to ignore alignment characters |table-mode-ignore-align| .............. Set to ignore alignment characters
g:loaded_table_mode *table-mode-loaded* g:loaded_table_mode *table-mode-loaded*
Use this option to disable the plugin: > Use this option to disable the plugin: >
let g:loaded_table_mode = 1 let g:loaded_table_mode = 1
< <
@@ -201,6 +203,10 @@ g:table_mode_disable_mappings *table-mode-disable-mappings*
Use this option to disable default mappings: > Use this option to disable default mappings: >
let g:table_mode_disable_mappings = 1 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* g:table_mode_corner *table-mode-corner*
Use this option to define the table corner character: > Use this option to define the table corner character: >
let g:table_mode_corner = '+' 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. > alignments for columns in the table header border. >
let g:table_mode_align_char = ':' 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* g:table_mode_motion_up_map *table-mode-motion-up-map*
Set this to configure the mapping to move up a cell vertically. > Set this to configure the mapping to move up a cell vertically. >
let g:table_mode_motion_up_map = '{<Bar>' 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|. > combination with |table-mode-auto-align|. >
let g:table_mode_update_time = 500 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* g:table_mode_tableize_auto_border *table-mode-tableize-auto-border*
Enables adding row borders to tables when created using tableize. > Enables adding row borders to tables when created using tableize. >
let g:table_mode_tableize_auto_border = 0 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 formula line and update the table accordingly. This invokes the
|TableEvalFormulaLine| command. |TableEvalFormulaLine| command.
*table-mode-mappings-sort-column* *table-mode-mappings-sort-column*
`<Leader>ts`: Sort a column under the cursor. This invokes |TableSort| `<Leader>ts`: Sort a column under the cursor. This invokes |TableSort|