Merge pull request #629 from gpanders/dev

Allow customization of header level of TOC
This commit is contained in:
Rane Brown
2019-03-18 17:20:30 -06:00
committed by GitHub
6 changed files with 26 additions and 9 deletions

View File

@ -172,6 +172,7 @@ function! s:read_global_settings_from_user()
\ 'table_auto_fmt': {'type': type(0), 'default': 1, 'min': 0, 'max': 1},
\ 'table_mappings': {'type': type(0), 'default': 1, 'min': 0, 'max': 1},
\ 'toc_header': {'type': type(''), 'default': 'Contents', 'min_length': 1},
\ 'toc_header_level': {'type': type(0), 'default': 1, 'min': 1, 'max': 6},
\ 'url_maxsave': {'type': type(0), 'default': 15, 'min': 0},
\ 'use_calendar': {'type': type(0), 'default': 1, 'min': 0, 'max': 1},
\ 'use_mouse': {'type': type(0), 'default': 0, 'min': 0, 'max': 1},