Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/vim73/syntax/tar.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim73/syntax/tar.vim')
-rw-r--r--vim73/syntax/tar.vim17
1 files changed, 17 insertions, 0 deletions
diff --git a/vim73/syntax/tar.vim b/vim73/syntax/tar.vim
new file mode 100644
index 0000000..497683a
--- /dev/null
+++ b/vim73/syntax/tar.vim
@@ -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