comparison runtime/syntax/teraterm.vim @ 9908:2b6654519a7c

commit https://github.com/vim/vim/commit/7571d55f7dcc009a375b2124cce2c8b21f361234 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Aug 18 22:54:46 2016 +0200 Updated runtime files.
author Christian Brabandt <cb@256bit.org>
date Thu, 18 Aug 2016 23:00:06 +0200
parents b2673982c625
children 34fd018452ed
comparison
equal deleted inserted replaced
9907:d46c83883c95 9908:2b6654519a7c
1 " Vim syntax file 1 " Vim syntax file
2 " Language: Tera Term Language (TTL) 2 " Language: Tera Term Language (TTL)
3 " Based on Tera Term Version 4.86 3 " Based on Tera Term Version 4.92
4 " Maintainer: Ken Takata 4 " Maintainer: Ken Takata
5 " URL: https://github.com/k-takata/vim-teraterm 5 " URL: https://github.com/k-takata/vim-teraterm
6 " Last Change: 2015 Jun 24 6 " Last Change: 2016 Aug 17
7 " Filenames: *.ttl 7 " Filenames: *.ttl
8 " License: VIM License 8 " License: VIM License
9 9
10 if exists("b:current_syntax") 10 if exists("b:current_syntax")
11 finish 11 finish
31 31
32 syn keyword ttlOperator and or xor not 32 syn keyword ttlOperator and or xor not
33 33
34 syn match ttlVar "\<groupmatchstr\d\>" 34 syn match ttlVar "\<groupmatchstr\d\>"
35 syn match ttlVar "\<param\d\>" 35 syn match ttlVar "\<param\d\>"
36 syn keyword ttlVar inputstr matchstr paramcnt result timeout mtimeout 36 syn keyword ttlVar inputstr matchstr paramcnt params result timeout mtimeout
37 37
38 38
39 syn match ttlLine nextgroup=ttlStatement "^" 39 syn match ttlLine nextgroup=ttlStatement "^"
40 syn match ttlStatement contained "\s*" 40 syn match ttlStatement contained "\s*"
41 \ nextgroup=ttlIf,ttlElseIf,ttlConditional,ttlRepeat, 41 \ nextgroup=ttlIf,ttlElseIf,ttlConditional,ttlRepeat,