diff options
author | James McCoy <jamessan@jamessan.com> | 2016-06-04 06:52:51 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-06-06 23:08:26 -0400 |
commit | 7634764e4c72d94855b30d70c19b117e3d5fccd8 (patch) | |
tree | 2ef668af7c1a80acd36fdaf6beb53b217a67f433 /runtime/syntax/messages.vim | |
parent | 999590b313ef32ca29c4ddba20c5b719730ee7ff (diff) | |
download | rneovim-7634764e4c72d94855b30d70c19b117e3d5fccd8.tar.gz rneovim-7634764e4c72d94855b30d70c19b117e3d5fccd8.tar.bz2 rneovim-7634764e4c72d94855b30d70c19b117e3d5fccd8.zip |
vim-patch:13d5aee
Update runtime files
https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Ignored changes to
* doc/develop.txt, since they were all in the "Coding Style"
section, which is completely different between Vim and Neovim.
* doc/tags, doc/todo.txt
* syntax/vim.vim, generated at build time
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 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*' |