mirror of
https://github.com/neovim/neovim.git
synced 2024-12-25 13:45:15 -07:00
18 lines
373 B
VimL
18 lines
373 B
VimL
|
" 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
|