Mercurial > vim
annotate runtime/syntax/coco.vim @ 10365:0dd0c7fb1096 v8.0.0077
commit https://github.com/vim/vim/commit/e3505dfc858260a21f2bbc6056f5769dea2f273d
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Nov 11 21:57:45 2016 +0100
patch 8.0.0077
Problem: The GUI code is not tested by Travis.
Solution: Install the virtual framebuffer.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 11 Nov 2016 22:00:04 +0100 |
parents | 43efa4f5a8ea |
children | 1e9e9d89f0ee |
rev | line source |
---|---|
1624 | 1 " Vim syntax file |
2 " Language: Coco/R | |
3 " Maintainer: Ashish Shukla <wahjava@gmail.com> | |
4 " Last Change: 2007 Aug 10 | |
5 " Remark: Coco/R syntax partially implemented. | |
6 " License: Vim license | |
7 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
1624
diff
changeset
|
8 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
1624
diff
changeset
|
9 if exists("b:current_syntax") |
1624 | 10 finish |
11 endif | |
12 | |
13 syn keyword cocoKeywords ANY CHARACTERS COMMENTS COMPILER CONTEXT END FROM IF IGNORE IGNORECASE NESTED PRAGMAS PRODUCTIONS SYNC TO TOKENS WEAK | |
14 syn match cocoUnilineComment #//.*$# | |
15 syn match cocoIdentifier /[[:alpha:]][[:alnum:]]*/ | |
16 syn region cocoMultilineComment start=#/[*]# end=#[*]/# | |
17 syn region cocoString start=/"/ skip=/\\"\|\\\\/ end=/"/ | |
18 syn region cocoCharacter start=/'/ skip=/\\'\|\\\\/ end=/'/ | |
19 syn match cocoOperator /+\||\|\.\.\|-\|(\|)\|{\|}\|\[\|\]\|=\|<\|>/ | |
20 syn region cocoProductionCode start=/([.]/ end=/[.])/ | |
21 syn match cocoPragma /[$][[:alnum:]]*/ | |
22 | |
23 hi def link cocoKeywords Keyword | |
24 hi def link cocoUnilineComment Comment | |
25 hi def link cocoMultilineComment Comment | |
26 hi def link cocoIdentifier Identifier | |
27 hi def link cocoString String | |
28 hi def link cocoCharacter Character | |
29 hi def link cocoOperator Operator | |
30 hi def link cocoProductionCode Statement | |
31 hi def link cocoPragma Special | |
32 |