diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-20 12:36:02 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-20 12:36:02 +0200 |
commit | fa01c39d482402e4c222ea8401aadd082e818d29 (patch) | |
tree | 38ceee6f7317723d2944a97fb34900495f45e1c8 /runtime/syntax/sh.vim | |
parent | 973bd47c488b5020947d819f3cb9040ff83f347c (diff) | |
download | vim-git-fa01c39d482402e4c222ea8401aadd082e818d29.tar.gz |
Updated sh and vim syntax files. (Charles Campbell)
Diffstat (limited to 'runtime/syntax/sh.vim')
-rw-r--r-- | runtime/syntax/sh.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/syntax/sh.vim b/runtime/syntax/sh.vim index 2b1269fc0..ef057c93e 100644 --- a/runtime/syntax/sh.vim +++ b/runtime/syntax/sh.vim @@ -3,7 +3,7 @@ " Maintainer: Dr. Charles E. Campbell, Jr. <NdrOchipS@PcampbellAfamily.Mbiz> " Previous Maintainer: Lennart Schultz <Lennart.Schultz@ecmwf.int> " Last Change: Apr 12, 2010 -" Version: 111 +" Version: 112 " URL: http://mysite.verizon.net/astronaut/vim/index.html#vimlinks_syntax " For options and settings, please use: :help ft-sh-syntax " This file includes many ideas from Éric Brunet (eric.brunet@ens.fr) @@ -132,7 +132,7 @@ syn match shTestError "]" " Options: {{{1 " ==================== -syn match shOption "\s\zs[-+][a-zA-Z0-9]\+\>" +syn match shOption "\s\zs[-+][-_a-zA-Z0-9]\+\>" syn match shOption "\s\zs--[^ \t$`'"|]\+" " File Redirection Highlighted As Operators: {{{1 |