Mercurial > vim
view runtime/syntax/tar.vim @ 24093:5dfee9b1eabe v8.2.2588
patch 8.2.2588: build failure with tiny features
Commit: https://github.com/vim/vim/commit/23b32a8d6bd9ec83c0c6632b7a8bfa544ac0a2f1
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Mar 10 21:55:46 2021 +0100
patch 8.2.2588: build failure with tiny features
Problem: Build failure with tiny features.
Solution: Add #ifdef. Run recover test separately.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 10 Mar 2021 22:00:04 +0100 |
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