0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.0117

This commit is contained in:
Bram Moolenaar
2005-07-27 21:13:01 +00:00
parent 231334e6ef
commit 87e25fdf80
43 changed files with 2300 additions and 880 deletions

17
runtime/syntax/tar.vim Normal file
View File

@@ -0,0 +1,17 @@
" 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