diff options
author | pips.linux <Philipp.Frank@web.de> | 2016-04-07 21:40:40 +0200 |
---|---|---|
committer | KillTheMule <KillTheMule@users.noreply.github.com> | 2016-04-28 21:11:03 +0200 |
commit | ee4d1f2ccea1d1d6158f5781caa12dfcc1aad11d (patch) | |
tree | 6eaa041c05fa26423a035cfe11e071a16b797c21 /runtime/syntax | |
parent | 81e0874a54de2213af13dda385b2c2d46cec14ae (diff) | |
download | rneovim-ee4d1f2ccea1d1d6158f5781caa12dfcc1aad11d.tar.gz rneovim-ee4d1f2ccea1d1d6158f5781caa12dfcc1aad11d.tar.bz2 rneovim-ee4d1f2ccea1d1d6158f5781caa12dfcc1aad11d.zip |
vim-patch:7.4.1236
Problem: When "syntax manual" was used switching between buffers removes
the highlighting.
Solution: Set the syntax option without changing the value. (Anton
Lindqvist)
https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Patch applied cleanly to the nvim sources except for version.c.
Diffstat (limited to 'runtime/syntax')
-rw-r--r-- | runtime/syntax/manual.vim | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/runtime/syntax/manual.vim b/runtime/syntax/manual.vim index 5ea373180a..c0e53fa7b4 100644 --- a/runtime/syntax/manual.vim +++ b/runtime/syntax/manual.vim @@ -1,6 +1,6 @@ " Vim syntax support file " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last Change: 2008 Jan 26 +" Last Change: 2016 Feb 01 " This file is used for ":syntax manual". " It installs the Syntax autocommands, but no the FileType autocommands. @@ -16,10 +16,11 @@ endif let syntax_manual = 1 -" Remove the connection between FileType and Syntax autocommands. -if exists('#syntaxset') - au! syntaxset FileType -endif +" Overrule the connection between FileType and Syntax autocommands. This sets +" the syntax when the file type is detected, without changing the value. +augroup syntaxset + au! FileType * exe "set syntax=" . &syntax +augroup END " If the GUI is already running, may still need to install the FileType menu. " Don't do it when the 'M' flag is included in 'guioptions'. |