diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-21 23:36:05 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-21 23:36:05 +0100 |
commit | 13d5aeef56e3140a8eb8f40c7062aa1c5700f76e (patch) | |
tree | 71c1b7e6a71aa1fd73a4016fa16ea28ddbb79d15 /runtime/syntax/messages.vim | |
parent | 5f8a14b9dea094b8bbab94cfc1e8da8e633fbc01 (diff) | |
download | vim-git-13d5aeef56e3140a8eb8f40c7062aa1c5700f76e.tar.gz |
Update runtime files
Diffstat (limited to 'runtime/syntax/messages.vim')
-rw-r--r-- | runtime/syntax/messages.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/syntax/messages.vim b/runtime/syntax/messages.vim index 4648e94c1..c22e4e8d0 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*' |