view runtime/syntax/cvsrc.vim @ 25935:c90b8e41b10e v8.2.3501

patch 8.2.3501: tmux filetype dection is incomplete Commit: https://github.com/vim/vim/commit/e519eb41c1c12836b2d12aeb703bb04c7618a724 Author: Eric Pruitt <eric.pruitt@gmail.com> Date: Tue Oct 12 13:58:23 2021 +0100 patch 8.2.3501: tmux filetype dection is incomplete Problem: tmux filetype dection is incomplete Solution: Also use tmux for files having text after .conf. (Eric Pruitt, closes #8971)
author Bram Moolenaar <Bram@vim.org>
date Tue, 12 Oct 2021 15:00:06 +0200
parents 1218c5353e2b
children
line wrap: on
line source

" Vim syntax file
" Language:             cvs(1) RC file
" Previous Maintainer:  Nikolai Weibull <now@bitwi.se>
" Latest Revision:      2006-04-19

if exists("b:current_syntax")
  finish
endif

let s:cpo_save = &cpo
set cpo&vim

syn region  cvsrcString   display oneline start=+"+ skip=+\\\\\|\\\\"+ end=+"+
syn region  cvsrcString   display oneline start=+'+ skip=+\\\\\|\\\\'+ end=+'+

syn match   cvsrcNumber   display '\<\d\+\>'

syn match   cvsrcBegin    display '^' nextgroup=cvsrcCommand skipwhite

syn region  cvsrcCommand  contained transparent matchgroup=cvsrcCommand
                          \ start='add\|admin\|checkout\|commit\|cvs\|diff'
                          \ start='export\|history\|import\|init\|log'
                          \ start='rdiff\|release\|remove\|rtag\|status\|tag'
                          \ start='update'
                          \ end='$'
                          \ contains=cvsrcOption,cvsrcString,cvsrcNumber
                          \ keepend

syn match   cvsrcOption   contained display '-\a\+'

hi def link cvsrcString   String
hi def link cvsrcNumber   Number
hi def link cvsrcCommand  Keyword
hi def link cvsrcOption   Identifier

let b:current_syntax = "cvsrc"

let &cpo = s:cpo_save
unlet s:cpo_save