diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-10-29 17:41:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-29 17:41:22 +0200 |
commit | 6884f017b53369d6c9b06ddd3aedeb642dbd24a8 (patch) | |
tree | b321f2eed50fdc773ff616fd1105c908d31b1261 /runtime/autoload | |
parent | 356244d50ba01c63b3ac33057a69462c4029612c (diff) | |
download | rneovim-6884f017b53369d6c9b06ddd3aedeb642dbd24a8.tar.gz rneovim-6884f017b53369d6c9b06ddd3aedeb642dbd24a8.tar.bz2 rneovim-6884f017b53369d6c9b06ddd3aedeb642dbd24a8.zip |
vim-patch:partial:6ebe4f970b8b (#20860)
Update runtime files
https://github.com/vim/vim/commit/6ebe4f970b8b398087076a72a7aae6e680fb92da
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'runtime/autoload')
-rw-r--r-- | runtime/autoload/tohtml.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/autoload/tohtml.vim b/runtime/autoload/tohtml.vim index 66f1cb46cb..4ae17815ba 100644 --- a/runtime/autoload/tohtml.vim +++ b/runtime/autoload/tohtml.vim @@ -712,6 +712,9 @@ func! tohtml#GetUserSettings() "{{{ call tohtml#GetOption(user_settings, 'no_foldcolumn', user_settings.ignore_folding) call tohtml#GetOption(user_settings, 'hover_unfold', 0 ) call tohtml#GetOption(user_settings, 'no_pre', 0 ) + call tohtml#GetOption(user_settings, 'no_doc', 0 ) + call tohtml#GetOption(user_settings, 'no_links', 0 ) + call tohtml#GetOption(user_settings, 'no_modeline', 0 ) call tohtml#GetOption(user_settings, 'no_invalid', 0 ) call tohtml#GetOption(user_settings, 'whole_filler', 0 ) call tohtml#GetOption(user_settings, 'use_xhtml', 0 ) @@ -752,7 +755,7 @@ func! tohtml#GetUserSettings() "{{{ " pre_wrap doesn't do anything if not using pre or not using CSS if user_settings.no_pre || !user_settings.use_css - let user_settings.pre_wrap=0 + let user_settings.pre_wrap = 0 endif "}}} |