comparison runtime/syntax/help.vim @ 28862:82244cfc4694

Update runtime files, new color schemes Commit: https://github.com/vim/vim/commit/30ab04e16e1e9e6133590181197b3f8e70cb495e Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 14 13:33:50 2022 +0100 Update runtime files, new color schemes
author Bram Moolenaar <Bram@vim.org>
date Sat, 14 May 2022 14:45:04 +0200
parents cd68a630f0d0
children 57c9377b9c62
comparison
equal deleted inserted replaced
28861:d1bc3ca0cd1d 28862:82244cfc4694
1 " Vim syntax file 1 " Vim syntax file
2 " Language: Vim help file 2 " Language: Vim help file
3 " Maintainer: Bram Moolenaar (Bram@vim.org) 3 " Maintainer: Bram Moolenaar (Bram@vim.org)
4 " Last Change: 2022 May 12 4 " Last Change: 2022 May 13
5 5
6 " Quit when a (custom) syntax file was already loaded 6 " Quit when a (custom) syntax file was already loaded
7 if exists("b:current_syntax") 7 if exists("b:current_syntax")
8 finish 8 finish
9 endif 9 endif
213 hi def link helpUnderlined Underlined 213 hi def link helpUnderlined Underlined
214 hi def link helpError Error 214 hi def link helpError Error
215 hi def link helpTodo Todo 215 hi def link helpTodo Todo
216 hi def link helpURL String 216 hi def link helpURL String
217 217
218 if expand('%:p') =~ escape($VIMRUNTIME, '\') .. '[/\\]doc[/\\]syntax.txt' 218 if expand('%:p') =~ '[/\\]doc[/\\]syntax.txt'
219 " highlight groups with their respective color 219 " highlight groups with their respective color
220 import 'dist/vimhelp.vim' 220 import 'dist/vimhelp.vim'
221 call vimhelp.HighlightGroups() 221 call vimhelp.HighlightGroups()
222 endif 222 endif
223 223