Mercurial > vim
annotate runtime/syntax/man.vim @ 13204:a8a154cafc60 v8.0.1476
patch 8.0.1476: screen isn't always updated right away
commit https://github.com/vim/vim/commit/acda04f5c641330cd589ca52eb61d1ab0d62385f
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Feb 8 09:57:28 2018 +0100
patch 8.0.1476: screen isn't always updated right away
Problem: Screen isn't always updated right away.
Solution: Adjust #ifdef: Call out_flush() when not running the GUI.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 08 Feb 2018 10:00:06 +0100 |
parents | 46763b01cd9a |
children | bd021eb62e73 |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: Man page | |
2034 | 3 " Maintainer: SungHyun Nam <goweol@gmail.com> |
7 | 4 " Previous Maintainer: Gautam H. Mudunuri <gmudunur@informatica.com> |
5 " Version Info: | |
7272
17333ebd2bbd
commit https://github.com/vim/vim/commit/d042dc825c9b97dacd84d4728f88300da4d5b6b9
Christian Brabandt <cb@256bit.org>
parents:
2034
diff
changeset
|
6 " Last Change: 2015 Nov 24 |
7 | 7 |
8 " Additional highlighting by Johannes Tanzler <johannes.tanzler@aon.at>: | |
9 " * manSubHeading | |
10 " * manSynopsis (only for sections 2 and 3) | |
11 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7272
diff
changeset
|
12 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7272
diff
changeset
|
13 if exists("b:current_syntax") |
7 | 14 finish |
15 endif | |
16 | |
17 " Get the CTRL-H syntax to handle backspaced text | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7272
diff
changeset
|
18 runtime! syntax/ctrlh.vim |
7 | 19 |
20 syn case ignore | |
21 syn match manReference "\f\+([1-9][a-z]\=)" | |
22 syn match manTitle "^\f\+([0-9]\+[a-z]\=).*" | |
7272
17333ebd2bbd
commit https://github.com/vim/vim/commit/d042dc825c9b97dacd84d4728f88300da4d5b6b9
Christian Brabandt <cb@256bit.org>
parents:
2034
diff
changeset
|
23 syn match manSectionHeading "^[a-z][a-z -]*[a-z]$" |
17333ebd2bbd
commit https://github.com/vim/vim/commit/d042dc825c9b97dacd84d4728f88300da4d5b6b9
Christian Brabandt <cb@256bit.org>
parents:
2034
diff
changeset
|
24 syn match manSubHeading "^\s\{3\}[a-z][a-z -]*[a-z]$" |
7 | 25 syn match manOptionDesc "^\s*[+-][a-z0-9]\S*" |
26 syn match manLongOptionDesc "^\s*--[a-z0-9-]\S*" | |
27 " syn match manHistory "^[a-z].*last change.*$" | |
28 | |
29 if getline(1) =~ '^[a-zA-Z_]\+([23])' | |
30 syntax include @cCode <sfile>:p:h/c.vim | |
31 syn match manCFuncDefinition display "\<\h\w*\>\s*("me=e-1 contained | |
1621 | 32 syn region manSynopsis start="^SYNOPSIS"hs=s+8 end="^\u\+\s*$"me=e-12 keepend contains=manSectionHeading,@cCode,manCFuncDefinition |
7 | 33 endif |
34 | |
35 | |
36 " Define the default highlighting. | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7272
diff
changeset
|
37 " Only when an item doesn't have highlighting yet |
7 | 38 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
39 hi def link manTitle Title |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
40 hi def link manSectionHeading Statement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
41 hi def link manOptionDesc Constant |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
42 hi def link manLongOptionDesc Constant |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
43 hi def link manReference PreProc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
44 hi def link manSubHeading Function |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
45 hi def link manCFuncDefinition Function |
7 | 46 |
47 | |
48 let b:current_syntax = "man" | |
49 | |
50 " vim:ts=8 sts=2 sw=2: |