Mercurial > vim
annotate runtime/syntax/esmtprc.vim @ 28513:6a1e5b188374 v8.2.4781
patch 8.2.4781: Maxima files are not recognized
Commit: https://github.com/vim/vim/commit/d0a20c9d111da75febb60ffee2e15f727ab6a5ad
Author: Doron Behar <doron.behar@gmail.com>
Date: Mon Apr 18 14:32:42 2022 +0100
patch 8.2.4781: Maxima files are not recognized
Problem: Maxima files are not recognized.
Solution: Add patterns to detect Maxima files. (Doron Behar, closes https://github.com/vim/vim/issues/10211)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 18 Apr 2022 15:45:02 +0200 |
parents | 43efa4f5a8ea |
children |
rev | line source |
---|---|
167 | 1 " Vim syntax file |
2 " Language: Esmtp setup file (based on esmtp 0.5.0) | |
3 " Maintainer: Kornel Kielczewski <kornel@gazeta.pl> | |
4 " Last Change: 16 Feb 2005 | |
5 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4992
diff
changeset
|
6 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4992
diff
changeset
|
7 if exists("b:current_syntax") |
167 | 8 finish |
9 endif | |
10 | |
11 "All options | |
4992 | 12 syntax keyword esmtprcOptions hostname username password starttls certificate_passphrase preconnect identity mda |
167 | 13 |
14 "All keywords | |
4992 | 15 syntax keyword esmtprcIdentifier default enabled disabled required |
167 | 16 |
17 "We're trying to be smarer than /."*@.*/ :) | |
4992 | 18 syntax match esmtprcAddress /[a-z0-9_.-]*[a-z0-9]\+@[a-z0-9_.-]*[a-z0-9]\+\.[a-z]\+/ |
19 syntax match esmtprcFulladd /[a-z0-9_.-]*[a-z0-9]\+\.[a-z]\+:[0-9]\+/ | |
167 | 20 |
21 "String.. | |
4992 | 22 syntax region esmtprcString start=/"/ end=/"/ |
167 | 23 |
24 | |
4992 | 25 highlight link esmtprcOptions Label |
26 highlight link esmtprcString String | |
27 highlight link esmtprcAddress Type | |
28 highlight link esmtprcIdentifier Identifier | |
29 highlight link esmtprcFulladd Include | |
167 | 30 |
4992 | 31 let b:current_syntax = "esmtprc" |