Mercurial > vim
view runtime/syntax/tar.vim @ 7049:2ebc20378f68 v7.4.837
commit https://github.com/vim/vim/commit/80ce282107849ef1a0e9b8a3be26c59c211b0957
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Aug 25 19:49:50 2015 +0200
patch 7.4.837
Problem: Compiler warning with MSVC compiler when using +sniff.
Solution: Use Sleep() instead of _sleep(). (Tux)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 25 Aug 2015 20:00:05 +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