summaryrefslogtreecommitdiffstats
path: root/runtime/syntax/autohotkey.vim
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/syntax/autohotkey.vim')
-rw-r--r--runtime/syntax/autohotkey.vim7
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/syntax/autohotkey.vim b/runtime/syntax/autohotkey.vim
index 78cb9e79b1..bbefd6f7b0 100644
--- a/runtime/syntax/autohotkey.vim
+++ b/runtime/syntax/autohotkey.vim
@@ -1,7 +1,7 @@
" Vim syntax file
" Language: AutoHotkey script file
" Maintainer: Nikolai Weibull <now@bitwi.se>
-" Latest Revision: 2007-05-09
+" Latest Revision: 2007-06-01
if exists("b:current_syntax")
finish
@@ -242,6 +242,10 @@ syn keyword autohotkeyType
\ local
\ global
+syn keyword autohotkeyBoolean
+ \ true
+ \ false
+
hi def link autohotkeyTodo Todo
hi def link autohotkeyComment Comment
hi def link autohotkeyCommentStart autohotkeyComment
@@ -271,6 +275,7 @@ hi def link autohotkeyNumber Number
hi def link autohotkeyInteger autohotkeyNumber
hi def link autohotkeyFloat autohotkeyNumber
hi def link autohotkeyType Type
+hi def link autohotkeyBoolean Boolean
let b:current_syntax = "autohotkey"