view runtime/syntax/tar.vim @ 4482:cd005ab15ef3 v7.3.989

updated for version 7.3.989 Problem: New regexp engine compares negative numbers to character. Solution: Add missing case statements.
author Bram Moolenaar <bram@vim.org>
date Tue, 21 May 2013 15:33:41 +0200
parents 7472c565592a
children 1e9e9d89f0ee
line wrap: on
line source

" Language   : Tar Listing Syntax
" Maintainer : Bram Moolenaar
" Last change: Sep 08, 2004

if exists("b:current_syntax")
 finish
endif

syn match tarComment '^".*' contains=tarFilename
syn match tarFilename 'tarfile \zs.*' contained
syn match tarDirectory '.*/$'

hi def link tarComment	Comment
hi def link tarFilename	Constant
hi def link tarDirectory Type

" vim: ts=8