diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-12-29 22:45:34 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-12-29 22:45:34 +0000 |
commit | 86e01085a10b88aa19f9634eaf265656ebb4c945 (patch) | |
tree | 3d122b0b2e5a662af21286926f8cde0ba86c2cc6 /runtime/syntax/sh.vim | |
parent | 371baa928db4308da70594064cfca172a63e8dff (diff) | |
download | vim-git-86e01085a10b88aa19f9634eaf265656ebb4c945.tar.gz |
updated for version 7.0178
Diffstat (limited to 'runtime/syntax/sh.vim')
-rw-r--r-- | runtime/syntax/sh.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/syntax/sh.vim b/runtime/syntax/sh.vim index 7615c59d6..5aa1e4de8 100644 --- a/runtime/syntax/sh.vim +++ b/runtime/syntax/sh.vim @@ -2,8 +2,8 @@ " Language: shell (sh) Korn shell (ksh) bash (sh) " Maintainer: Dr. Charles E. Campbell, Jr. <NdrOchipS@PcampbellAfamily.Mbiz> " Previous Maintainer: Lennart Schultz <Lennart.Schultz@ecmwf.int> -" Last Change: Oct 18, 2005 -" Version: 78 +" Last Change: Dec 29, 2005 +" Version: 79 " URL: http://mysite.verizon.net/astronaut/vim/index.html#vimlinks_syntax " " Using the following VIM variables: {{{1 @@ -123,7 +123,7 @@ syn match shTestError "]" " Options Interceptor: {{{1 " ==================== syn match shOption "\s[\-+][a-zA-Z0-9]\+\>"ms=s+1 -syn match shOption "\s--\S\+"ms=s+1 +syn match shOption "\s--[^ \t$`|]\+"ms=s+1 " Operators: {{{1 " ========== |