aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/messages.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-06-07 10:32:28 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-06-07 10:32:28 -0400
commit8849c209cc0ae94d60a814b55397d80c2c16a185 (patch)
tree28c9274437a8ec9d4f79c6cb5a99d4da2763c5c7 /runtime/syntax/messages.vim
parentd9660184665a3e3bac5feecb4b4b5680012329d4 (diff)
parent18cbe74af75c69e20dce9e2589649dab4b6ae81e (diff)
downloadrneovim-8849c209cc0ae94d60a814b55397d80c2c16a185.tar.gz
rneovim-8849c209cc0ae94d60a814b55397d80c2c16a185.tar.bz2
rneovim-8849c209cc0ae94d60a814b55397d80c2c16a185.zip
Merge #4888 from jamessan/vim-13d5aee
vim-patch:13d5aee,705ada1,298b440,5e9b2fa,7c764f7,681baaf,cbebd48
Diffstat (limited to 'runtime/syntax/messages.vim')
-rw-r--r--runtime/syntax/messages.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/syntax/messages.vim b/runtime/syntax/messages.vim
index 4648e94c13..c22e4e8d0c 100644
--- a/runtime/syntax/messages.vim
+++ b/runtime/syntax/messages.vim
@@ -3,6 +3,7 @@
" Maintainer: Yakov Lerner <iler.ml@gmail.com>
" Latest Revision: 2008-06-29
" Changes: 2008-06-29 support for RFC3339 tuimestamps James Vega
+" 2016 Jan 19: messagesDate changed by Bram
if exists("b:current_syntax")
finish
@@ -13,7 +14,7 @@ set cpo&vim
syn match messagesBegin display '^' nextgroup=messagesDate,messagesDateRFC3339
-syn match messagesDate contained display '\a\a\a [ 0-9]\d *'
+syn match messagesDate contained display '[[:lower:][:upper:]][[:lower:][:upper:]][[:lower:][:upper:]] [ 0-9]\d *'
\ nextgroup=messagesHour
syn match messagesHour contained display '\d\d:\d\d:\d\d\s*'