Mercurial > vim
view runtime/syntax/tar.vim @ 16947:b2179cf1a0a5 v8.1.1474
patch 8.1.1474: 'ttybuiltin' is not tested
commit https://github.com/vim/vim/commit/9aeb33639f49511cc16962a11a40844693ddb15e
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Jun 6 12:36:15 2019 +0200
patch 8.1.1474: 'ttybuiltin' is not tested
Problem: 'ttybuiltin' is not tested.
Solution: At least test that it doesn't break things.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 06 Jun 2019 12:45: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