comparison runtime/syntax/pod.vim @ 12499:d91cf2e26ef0

Update runtime files. commit https://github.com/vim/vim/commit/37c64c78fd87e086b5a945ad7032787c274e2dcb Author: Bram Moolenaar <Bram@vim.org> Date: Tue Sep 19 22:06:03 2017 +0200 Update runtime files.
author Christian Brabandt <cb@256bit.org>
date Tue, 19 Sep 2017 22:15:06 +0200
parents 46763b01cd9a
children d1fe80fb35e6
comparison
equal deleted inserted replaced
12498:bf98d339b568 12499:d91cf2e26ef0
2 " Language: Perl POD format 2 " Language: Perl POD format
3 " Maintainer: vim-perl <vim-perl@googlegroups.com> 3 " Maintainer: vim-perl <vim-perl@googlegroups.com>
4 " Previously: Scott Bigham <dsb@killerbunnies.org> 4 " Previously: Scott Bigham <dsb@killerbunnies.org>
5 " Homepage: http://github.com/vim-perl/vim-perl 5 " Homepage: http://github.com/vim-perl/vim-perl
6 " Bugs/requests: http://github.com/vim-perl/vim-perl/issues 6 " Bugs/requests: http://github.com/vim-perl/vim-perl/issues
7 " Last Change: 2013-07-21 7 " Last Change: 2017-09-12
8 8
9 " To add embedded POD documentation highlighting to your syntax file, add 9 " To add embedded POD documentation highlighting to your syntax file, add
10 " the commands: 10 " the commands:
11 " 11 "
12 " syn include @Pod <sfile>:p:h/pod.vim 12 " syn include @Pod <sfile>:p:h/pod.vim
66 " Define the default highlighting. 66 " Define the default highlighting.
67 " Only when an item doesn't have highlighting yet 67 " Only when an item doesn't have highlighting yet
68 68
69 hi def link podCommand Statement 69 hi def link podCommand Statement
70 hi def link podCmdText String 70 hi def link podCmdText String
71 hi def link podOverIndent Number 71 hi def link podOverIndent Number
72 hi def link podForKeywd Identifier 72 hi def link podForKeywd Identifier
73 hi def link podFormat Identifier 73 hi def link podFormat Identifier
74 hi def link podVerbatimLine PreProc 74 hi def link podVerbatimLine PreProc
75 hi def link podSpecial Identifier 75 hi def link podSpecial Identifier
76 hi def link podEscape String 76 hi def link podEscape String
77 hi def link podEscape2 Number 77 hi def link podEscape2 Number
78
79 78
80 if exists("perl_pod_spellcheck_headings") 79 if exists("perl_pod_spellcheck_headings")
81 " Spell-check headings 80 " Spell-check headings
82 syn clear podCmdText 81 syn clear podCmdText
83 syn match podCmdText ".*$" contained contains=podFormat 82 syn match podCmdText ".*$" contained contains=podFormat