diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-05-13 15:20:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 15:20:58 +0200 |
commit | eb4b337d9eb8bf15cf0b832f46ea9cff14d6adce (patch) | |
tree | afacbb31b05f04870f0b60a4a223a7f904d903b0 /runtime/ftplugin | |
parent | c196119acbd5de0e9e5fae91db62fc9dfc675f8d (diff) | |
download | rneovim-eb4b337d9eb8bf15cf0b832f46ea9cff14d6adce.tar.gz rneovim-eb4b337d9eb8bf15cf0b832f46ea9cff14d6adce.tar.bz2 rneovim-eb4b337d9eb8bf15cf0b832f46ea9cff14d6adce.zip |
vim-patch:partial:3f32a5f1601a (#18555)
Update runtime files and translations
https://github.com/vim/vim/commit/3f32a5f1601ab2b0eba0caad00d4c26fb86a02a2
skip eval.txt (requires 8.2.4883)
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/scdoc.vim | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/runtime/ftplugin/scdoc.vim b/runtime/ftplugin/scdoc.vim index 2e98e647f4..552c865baa 100644 --- a/runtime/ftplugin/scdoc.vim +++ b/runtime/ftplugin/scdoc.vim @@ -1,6 +1,7 @@ " scdoc filetype plugin -" Maintainer: Gregory Anders <greg@gpanders.com> -" Last Updated: 2021-08-04 +" Maintainer: Gregory Anders <contact@gpanders.com> +" Last Updated: 2022-05-09 +" Upstream: https://github.com/gpanders/vim-scdoc " Only do this when not done yet for this buffer if exists('b:did_ftplugin') @@ -19,8 +20,3 @@ setlocal softtabstop=0 setlocal textwidth=80 let b:undo_ftplugin = 'setl com< cms< fo< et< sw< sts< tw<' - -if has('conceal') - setlocal conceallevel=2 - let b:undo_ftplugin .= ' cole<' -endif |