Mercurial > vim
annotate runtime/syntax/jargon.vim @ 18518:59c56c97049d v8.1.2253
patch 8.1.2253: using "which" to check for an executable is not reliable
Commit: https://github.com/vim/vim/commit/ad4de52510d5b4a949c0c9e25b5d5333744820b3
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Nov 4 21:24:48 2019 +0100
patch 8.1.2253: using "which" to check for an executable is not reliable
Problem: Using "which" to check for an executable is not reliable.
Solution: Use "command -v" instead. Also exit with error code when
generating tags has an error. (closes #5174)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 04 Nov 2019 21:30:03 +0100 |
parents | 03b854983b14 |
children | bceeded72898 |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: Jargon File | |
18186 | 3 " Maintainer: Dan Church (https://github.com/h3xx) |
4 " Last Change: 2019 Sep 27 | |
7 | 5 " |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
6 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
7 if exists("b:current_syntax") |
7 | 8 finish |
9 endif | |
10 | |
11 syn match jargonChaptTitle /:[^:]*:/ | |
12 syn match jargonEmailAddr /[^<@ ^I]*@[^ ^I>]*/ | |
13 syn match jargonUrl +\(http\|ftp\)://[^\t )"]*+ | |
18186 | 14 syn region jargonMark start="{" end="}" |
7 | 15 |
16 " Define the default highlighting. | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
17 " Only when an item doesn't have highlighting yet |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
18 hi def link jargonChaptTitle Title |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
19 hi def link jargonEmailAddr Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
20 hi def link jargonUrl Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
21 hi def link jargonMark Label |
7 | 22 |
23 let b:current_syntax = "jargon" |