Changeset 101983 for contrib/mpvim


Ignore:
Timestamp:
Jan 23, 2013, 9:24:17 PM (11 years ago)
Author:
larryv@…
Message:

mpvim syntax: Remove extraneous escapes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • contrib/mpvim/syntax/portfile.vim

    r101966 r101983  
    4040syn keyword PortfileOptional    replaced_by supported_archs
    4141
    42 syn match  PortfileOptional     "checksums\(\-\(append\|delete\)\)\?" nextgroup=PortfileChecksums skipwhite
     42syn match  PortfileOptional     "checksums\(-\(append\|delete\)\)\?" nextgroup=PortfileChecksums skipwhite
    4343syn region PortfileChecksums    matchgroup=Normal start="" skip="\\$" end="$" contained contains=PortfileChecksumsType
    4444syn keyword PortfileChecksumsType md5 sha1 rmd160 sha256 contained
    4545
    46 syn match PortfilePhases        "\(\(pre\|post\)\-\)\?\(fetch\|checksum\|extract\|patch\|configure\|build\|test\|destroot\|archive\|install\|activate\)\s" contains=PortfilePrePost
     46syn match PortfilePhases        "\(\(pre\|post\)-\)\?\(fetch\|checksum\|extract\|patch\|configure\|build\|test\|destroot\|archive\|install\|activate\)\s" contains=PortfilePrePost
    4747
    4848" Fetch phase options
     
    5454
    5555" Extract phase options
    56 syn match PortfilePhasesExtract "extract\.\(suffix\|mkdir\|cmd\|only\(\-\(append\|delete\)\)\?\)"
     56syn match PortfilePhasesExtract "extract\.\(suffix\|mkdir\|cmd\|only\(-\(append\|delete\)\)\?\)"
    5757syn match PortfilePhasesExtract "use_\(7z\|bzip2\|lzma\|zip\|xz\)" nextgroup=PortfileYesNo skipwhite
    5858
    5959" Patch phase options
    60 syn match PortfilePhasesPatch   "patch\.\(dir\|cmd\|args\(\-\(append\|delete\)\)\?\)"
    61 syn match PortfilePhasesPatch   "patchfiles\(\-\(append\|delete\)\)\?"
     60syn match PortfilePhasesPatch   "patch\.\(dir\|cmd\|args\(-\(append\|delete\)\)\?\)"
     61syn match PortfilePhasesPatch   "patchfiles\(-\(append\|delete\)\)\?"
    6262
    6363" Configure phase options
    6464syn keyword PortfilePhasesConf  use_configure nextgroup=PortfileYesNo skipwhite
    6565syn match PortfilePhasesConf    "configure\.\(env\|\(c\|ld\|cpp\|cxx\|objc\|f\|fc\|f90\)flags\)\(-\(append\|delete\)\)\?"
    66 syn match PortfilePhasesConf    "configure\.\(\(pre\|post\)\-\)\?args\(-\(\append\|delete\)\)\?" nextgroup=PortfileConfEntries skipwhite
     66syn match PortfilePhasesConf    "configure\.\(\(pre\|post\)-\)\?args\(-\(\append\|delete\)\)\?" nextgroup=PortfileConfEntries skipwhite
    6767syn region PortfileConfEntries  matchgroup=Normal start="" skip="\\$" end="$" contained
    6868syn match PortfilePhasesConf    "configure\.\(cc\|cpp\|cxx\|objc\|fc\|f77\|f90\|javac\|compiler\)"
     
    9999syn keyword PortfileOptional            universal_variant nextgroup=PortfileYesNo skipwhite
    100100syn match PortfileOptional              "default_variants\(-\(append\|delete\)\)\?" nextgroup=PortfileDefaultVariants skipwhite
    101 syn match PortfileDefaultVariants       "\([+|\-][a-zA-Z0-9_]\+\s*\)\+" contained
     101syn match PortfileDefaultVariants       "\([+\-][a-zA-Z0-9_]\+\s*\)\+" contained
    102102
    103103" Platform
Note: See TracChangeset for help on using the changeset viewer.