comparison src/option.c @ 17596:892b4ea3bad6 v8.1.1795

patch 8.1.1795: no syntax HL after splitting windows with :bufdo commit https://github.com/vim/vim/commit/c7f1e4002184903f4e12e429dd5c6ab731932f86 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 3 13:29:46 2019 +0200 patch 8.1.1795: no syntax HL after splitting windows with :bufdo Problem: No syntax HL after splitting windows with :bufdo. (Yasuhiro Matsumoto) Solution: Trigger Syntax autocommands in buffers that are active. (closes #4761)
author Bram Moolenaar <Bram@vim.org>
date Sat, 03 Aug 2019 13:30:07 +0200
parents e5dabc127143
children 9efb4dda9720
comparison
equal deleted inserted replaced
17595:50cc81726702 17596:892b4ea3bad6
7929 ++syn_recursive; 7929 ++syn_recursive;
7930 // Only pass TRUE for "force" when the value changed or not used 7930 // Only pass TRUE for "force" when the value changed or not used
7931 // recursively, to avoid endless recurrence. 7931 // recursively, to avoid endless recurrence.
7932 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn, curbuf->b_fname, 7932 apply_autocmds(EVENT_SYNTAX, curbuf->b_p_syn, curbuf->b_fname,
7933 value_changed || syn_recursive == 1, curbuf); 7933 value_changed || syn_recursive == 1, curbuf);
7934 curbuf->b_flags |= BF_SYN_SET;
7934 --syn_recursive; 7935 --syn_recursive;
7935 } 7936 }
7936 #endif 7937 #endif
7937 else if (varp == &(curbuf->b_p_ft)) 7938 else if (varp == &(curbuf->b_p_ft))
7938 { 7939 {