Mercurial > vim
view runtime/syntax/tar.vim @ 24412:0e0943dfdbf9 v8.2.2746
patch 8.2.2746: check for duplicate arguments does not work
Commit: https://github.com/vim/vim/commit/87795939d01932b0d8155fd69c7494fa51c523f3
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Apr 10 18:21:30 2021 +0200
patch 8.2.2746: check for duplicate arguments does not work
Problem: Check for duplicate arguments does not work.
Solution: Correct condition.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 10 Apr 2021 18:30:04 +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