diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-01-17 11:58:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-17 11:58:36 +0100 |
commit | 3906b2d4fc617c6b03f7c9a615d18b70d7250e80 (patch) | |
tree | ff85808e08ae5388a939dedc40a4c00286911673 /runtime/syntax | |
parent | 0c0469c4f59bf51a6e666a49d69cdb33e93bdf1b (diff) | |
download | rneovim-3906b2d4fc617c6b03f7c9a615d18b70d7250e80.tar.gz rneovim-3906b2d4fc617c6b03f7c9a615d18b70d7250e80.tar.bz2 rneovim-3906b2d4fc617c6b03f7c9a615d18b70d7250e80.zip |
vim-patch:fd31be29b822 (#17114)
Update runtime files
https://github.com/vim/vim/commit/fd31be29b8220ee1cb0b3460c82f2634ae3cc370
Diffstat (limited to 'runtime/syntax')
-rw-r--r-- | runtime/syntax/i3config.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/syntax/i3config.vim b/runtime/syntax/i3config.vim index f9e15d57e5..a2f50e50b8 100644 --- a/runtime/syntax/i3config.vim +++ b/runtime/syntax/i3config.vim @@ -3,7 +3,7 @@ " Original Author: Mohamed Boughaba <mohamed dot bgb at gmail dot com> " Maintainer: Quentin Hibon (github user hiqua) " Version: 0.4 -" Last Change: 2022 Jan 04 +" Last Change: 2022 Jan 15 " References: " http://i3wm.org/docs/userguide.html#configuring @@ -175,7 +175,7 @@ syn keyword i3ConfigDrawingMarksKeyword show_marks contained syn match i3ConfigDrawingMarks /^\s*show_marks\s\+\(yes\|no\)\s\?$/ contains=i3ConfigFocusWrappingType,i3ConfigDrawingMarksKeyword " Group mode/bar -syn keyword i3ConfigBlockKeyword mode bar colors i3bar_command status_command position exec mode hidden_state modifier id position output background statusline tray_output tray_padding separator separator_symbol workspace_buttons strip_workspace_numbers binding_mode_indicator focused_workspace active_workspace inactive_workspace urgent_workspace binding_mode contained +syn keyword i3ConfigBlockKeyword mode bar colors i3bar_command status_command position exec mode hidden_state modifier id position output background statusline tray_output tray_padding separator separator_symbol workspace_min_width workspace_buttons strip_workspace_numbers binding_mode_indicator focused_workspace active_workspace inactive_workspace urgent_workspace binding_mode contained syn region i3ConfigBlock start=+.*s\?{$+ end=+^}$+ contains=i3ConfigBlockKeyword,i3ConfigString,i3ConfigBind,i3ConfigComment,i3ConfigFont,i3ConfigFocusWrappingType,i3ConfigColor,i3ConfigVariable transparent keepend extend " Line continuation |