diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-05-14 13:33:50 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-05-14 13:33:50 +0100 |
commit | 30ab04e16e1e9e6133590181197b3f8e70cb495e (patch) | |
tree | c517425cceaef671aeea07d5332bbeb68397af8d /runtime/syntax | |
parent | 2e444bbef0f36535bf941f007f2961f3f66bbe87 (diff) | |
download | vim-git-30ab04e16e1e9e6133590181197b3f8e70cb495e.tar.gz |
Update runtime files, new color schemes
Diffstat (limited to 'runtime/syntax')
-rw-r--r-- | runtime/syntax/help.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/syntax/help.vim b/runtime/syntax/help.vim index 14777f858..6af9df704 100644 --- a/runtime/syntax/help.vim +++ b/runtime/syntax/help.vim @@ -1,7 +1,7 @@ " Vim syntax file " Language: Vim help file " Maintainer: Bram Moolenaar (Bram@vim.org) -" Last Change: 2022 May 12 +" Last Change: 2022 May 13 " Quit when a (custom) syntax file was already loaded if exists("b:current_syntax") @@ -215,7 +215,7 @@ hi def link helpError Error hi def link helpTodo Todo hi def link helpURL String -if expand('%:p') =~ escape($VIMRUNTIME, '\') .. '[/\\]doc[/\\]syntax.txt' +if expand('%:p') =~ '[/\\]doc[/\\]syntax.txt' " highlight groups with their respective color import 'dist/vimhelp.vim' call vimhelp.HighlightGroups() |