Mercurial > vim
view runtime/syntax/master.vim @ 34072:6d9e20b403e8 v9.1.0005
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Commit: https://github.com/vim/vim/commit/4d8cb683b1543ec02563cdd2d068ce5f82f90539
Author: Zoltan Arpadffy <zoltan.arpadffy@gmail.com>
Date: Thu Jan 4 21:01:13 2024 +0100
patch 9.1.0005: OpenVMS does not support python3 and xterm_save
Problem: OpenVMS build does not support python3 and xterm_save
Solution: Enable python3 + xterm_save feature, fix style issues
(Zoltan Arpadffy)
closes: #13812
Signed-off-by: Zoltan Arpadffy <zoltan.arpadffy@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 04 Jan 2024 21:15:05 +0100 |
parents | 46763b01cd9a |
children |
line wrap: on
line source
" Vim syntax file " Language: Focus Master File " Maintainer: Rob Brady <robb@datatone.com> " Last Change: $Date: 2004/06/13 15:54:03 $ " URL: http://www.datatone.com/~robb/vim/syntax/master.vim " $Revision: 1.1 $ " this is a very simple syntax file - I will be improving it " add entire DEFINE syntax " quit when a syntax file was already loaded if exists("b:current_syntax") finish endif syn case match " A bunch of useful keywords syn keyword masterKeyword FILENAME SUFFIX SEGNAME SEGTYPE PARENT FIELDNAME syn keyword masterKeyword FIELD ALIAS USAGE INDEX MISSING ON syn keyword masterKeyword FORMAT CRFILE CRKEY syn keyword masterDefine DEFINE DECODE EDIT syn region masterString start=+"+ end=+"+ syn region masterString start=+'+ end=+'+ syn match masterComment "\$.*" " Define the default highlighting. " Only when an item doesn't have highlighting yet hi def link masterKeyword Keyword hi def link masterComment Comment hi def link masterString String let b:current_syntax = "master" " vim: ts=8