comparison runtime/syntax/autoit.vim @ 3496:d1e4abe8342c

Fixed compatible mode in most runtime files.
author Bram Moolenaar <bram@vim.org>
date Mon, 30 Apr 2012 15:56:52 +0200
parents e63691e7c504
children 624439a39432
comparison
equal deleted inserted replaced
3495:0973ed3043c6 3496:d1e4abe8342c
3 " Language: AutoIt v3 (http://www.autoitscript.com/autoit3/) 3 " Language: AutoIt v3 (http://www.autoitscript.com/autoit3/)
4 " Maintainer: Jared Breland <jbreland@legroom.net> 4 " Maintainer: Jared Breland <jbreland@legroom.net>
5 " Authored By: Riccardo Casini <ric@libero.it> 5 " Authored By: Riccardo Casini <ric@libero.it>
6 " Script URL: http://www.vim.org/scripts/script.php?script_id=1239 6 " Script URL: http://www.vim.org/scripts/script.php?script_id=1239
7 " ChangeLog: Please visit the script URL for detailed change information 7 " ChangeLog: Please visit the script URL for detailed change information
8
9 " Quit when a syntax file was already loaded.
10 if exists("b:current_syntax")
11 finish
12 endif
13 let s:keepcpo= &cpo
14 set cpo&vim
15
16 let b:current_syntax = "autoit"
8 17
9 " AutoIt is not case dependent 18 " AutoIt is not case dependent
10 syn case ignore 19 syn case ignore
11 20
12 " Definitions for AutoIt reserved keywords 21 " Definitions for AutoIt reserved keywords
1106 hi def link autoitBuiltin Type " green/green 1115 hi def link autoitBuiltin Type " green/green
1107 hi def link autoitOption Type 1116 hi def link autoitOption Type
1108 hi def link autoitStyle Type 1117 hi def link autoitStyle Type
1109 hi def link autoitConst Type 1118 hi def link autoitConst Type
1110 hi def link autoitSend Type 1119 hi def link autoitSend Type
1120
1111 syn sync minlines=50 1121 syn sync minlines=50
1122
1123 let &cpo = s:keepcpo
1124 unlet s:keepcpo