aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/strace.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-12-17 21:30:33 -0500
committerJustin M. Keyes <justinkz@gmail.com>2015-12-17 21:56:41 -0500
commit65f11d0a00e0cfdf97d67f538ffb90461f9599b4 (patch)
treec57a60950afd8e9730afa6d2cda05ca8252f31bd /runtime/syntax/strace.vim
parent1e7a553ed7fca4f0e1b2a1d01494471204affa5d (diff)
downloadrneovim-65f11d0a00e0cfdf97d67f538ffb90461f9599b4.tar.gz
rneovim-65f11d0a00e0cfdf97d67f538ffb90461f9599b4.tar.bz2
rneovim-65f11d0a00e0cfdf97d67f538ffb90461f9599b4.zip
vim-patch:8a94d87
Update runtime files. https://github.com/vim/vim/commit/8a94d873aa8c753a8522ea86a049bdf2abd0c507
Diffstat (limited to 'runtime/syntax/strace.vim')
-rw-r--r--runtime/syntax/strace.vim7
1 files changed, 3 insertions, 4 deletions
diff --git a/runtime/syntax/strace.vim b/runtime/syntax/strace.vim
index 80cd262efc..0f686fd808 100644
--- a/runtime/syntax/strace.vim
+++ b/runtime/syntax/strace.vim
@@ -1,9 +1,8 @@
" Vim syntax file
" This is a GENERATED FILE. Please always refer to source file at the URI below.
" Language: strace output
-" Maintainer: David Ne\v{c}as (Yeti) <yeti@physics.muni.cz>
-" Last Change: 2002-10-10
-" URL: http://trific.ath.cx/Ftp/vim/syntax/strace.vim
+" Maintainer: David Necas (Yeti) <yeti@physics.muni.cz>
+" Last Change: 2015-01-16
" Setup
if version >= 600
@@ -17,7 +16,7 @@ endif
syn case match
" Parse the line
-syn match straceSpecialChar "\\\d\d\d\|\\." contained
+syn match straceSpecialChar "\\\o\{1,3}\|\\." contained
syn region straceString start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=straceSpecialChar oneline
syn match straceNumber "\W[+-]\=\(\d\+\)\=\.\=\d\+\([eE][+-]\=\d\+\)\="lc=1
syn match straceNumber "\W0x\x\+"lc=1