diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-11-15 21:28:22 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-11-15 21:28:22 +0100 |
commit | 97d62497f51902f404c7dcc72683411df911593e (patch) | |
tree | 24e9e549d9786c5549edcb17f98b7f81d9bfd40a /runtime/syntax/progress.vim | |
parent | 41b884b27387cd4c0ba1d039ea3bb2b7beac21c2 (diff) | |
download | vim-git-97d62497f51902f404c7dcc72683411df911593e.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/syntax/progress.vim')
-rw-r--r-- | runtime/syntax/progress.vim | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/runtime/syntax/progress.vim b/runtime/syntax/progress.vim index 190a0f381..85a54a650 100644 --- a/runtime/syntax/progress.vim +++ b/runtime/syntax/progress.vim @@ -3,13 +3,13 @@ " Filename extensions: *.p (collides with Pascal), " *.i (collides with assembler) " *.w (collides with cweb) -" Maintainer: Philip Uren <philuSPAX@ieee.org> Remove SPAX spam block -" Contributors: Chris Ruprecht <chris@ruprecht.org> -" Philip Uren <philu@computer.org> -" Mikhail Kuperblum <mikhail@whasup.com> -" John Florian <jflorian@voyager.net> -" Version: 12 -" Last Change: Aug 16 2012 +" Maintainer: Philip Uren <philuSPAXY@ieee.org> Remove SPAXY spam block +" Contributors: Matthew Stickney <mtstickneySPAXY@gmail.com> +" Chris Ruprecht <chrisSPAXY@ruprecht.org> +" Mikhail Kuperblum <mikhailSPAXY@whasup.com> +" John Florian <jflorianSPAXY@voyager.net> +" Version: 13 +" Last Change: Nov 11 2012 " For version 5.x: Clear all syntax item " For version 6.x: Quit when a syntax file was already loaded @@ -99,8 +99,8 @@ syn keyword ProgressReserved window-maxim[ized] window-minim[ized] window-normal " Strings. Handles embedded quotes. " Note that, for some reason, Progress doesn't use the backslash, "\" " as the escape character; it uses tilde, "~". -syn region ProgressString matchgroup=ProgressQuote start=+"+ end=+"+ skip=+\~'\|\~\~+ contains=@Spell -syn region ProgressString matchgroup=ProgressQuote start=+'+ end=+'+ skip=+\~'\|\~\~+ contains=@Spell +syn region ProgressString matchgroup=ProgressQuote start=+"+ end=+"+ skip=+\~'\|\~\~\|\~"+ contains=@Spell +syn region ProgressString matchgroup=ProgressQuote start=+'+ end=+'+ skip=+\~'\|\~\~\|\~"+ contains=@Spell syn match ProgressIdentifier "\<[a-zA-Z_][a-zA-Z0-9_]*\>()" |