Mercurial > vim
view runtime/syntax/esmtprc.vim @ 14560:8413e66d00a1
patch 8.1.0293: checks for type of stack is cryptic
commit https://github.com/vim/vim/commit/4d77c65a9e57e1d1a459c44411930c7a892835fd
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Aug 18 19:59:54 2018 +0200
patch 8.1.0293: checks for type of stack is cryptic
Problem: Checks for type of stack is cryptic.
Solution: Define IS_QF_STACK() and IS_LL_STACK(). (Yegappan Lakshmanan)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 18 Aug 2018 20:00:07 +0200 |
parents | 43efa4f5a8ea |
children |
line wrap: on
line source
" Vim syntax file " Language: Esmtp setup file (based on esmtp 0.5.0) " Maintainer: Kornel Kielczewski <kornel@gazeta.pl> " Last Change: 16 Feb 2005 " quit when a syntax file was already loaded if exists("b:current_syntax") finish endif "All options syntax keyword esmtprcOptions hostname username password starttls certificate_passphrase preconnect identity mda "All keywords syntax keyword esmtprcIdentifier default enabled disabled required "We're trying to be smarer than /."*@.*/ :) syntax match esmtprcAddress /[a-z0-9_.-]*[a-z0-9]\+@[a-z0-9_.-]*[a-z0-9]\+\.[a-z]\+/ syntax match esmtprcFulladd /[a-z0-9_.-]*[a-z0-9]\+\.[a-z]\+:[0-9]\+/ "String.. syntax region esmtprcString start=/"/ end=/"/ highlight link esmtprcOptions Label highlight link esmtprcString String highlight link esmtprcAddress Type highlight link esmtprcIdentifier Identifier highlight link esmtprcFulladd Include let b:current_syntax = "esmtprc"