Mercurial > vim
view runtime/syntax/wdiff.vim @ 32952:1c143662a40d v9.0.1778
patch 9.0.1778: if_py_both: code-style issue
Commit: https://github.com/vim/vim/commit/75dc1ed1adddbcde926872bb41dfe1a1b0029848
Author: Christian Brabandt <cb@256bit.org>
Date: Sun Aug 20 23:19:24 2023 +0200
patch 9.0.1778: if_py_both: code-style issue
Problem: if_py_both: code-style issue
Solution: add space
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 20 Aug 2023 23:30:02 +0200 |
parents | 46763b01cd9a |
children |
line wrap: on
line source
" Vim syntax file " Language: wDiff (wordwise diff) " Maintainer: Gerfried Fuchs <alfie@ist.org> " Last Change: 25 Apr 2001 " URL: http://alfie.ist.org/vim/syntax/wdiff.vim " " Comments are very welcome - but please make sure that you are commenting on " the latest version of this file. " SPAM is _NOT_ welcome - be ready to be reported! " quit when a syntax file was already loaded if exists("b:current_syntax") finish endif syn region wdiffOld start=+\[-+ end=+-]+ syn region wdiffNew start="{+" end="+}" " Define the default highlighting. " Only when an item doesn't have highlighting yet hi def link wdiffOld Special hi def link wdiffNew Identifier let b:current_syntax = "wdiff"