summaryrefslogtreecommitdiff
path: root/uvim/runtime/syntax/fetchmail.vim
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-03 22:21:25 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-04 00:23:03 +0300
commit2eae5db069dc171f74cd863487655f6a88e5384d (patch)
tree2d9d05e09978a2a44acbfbb8d651f240df3ca052 /uvim/runtime/syntax/fetchmail.vim
parent473d922faed49241a5d29d9e37dc4819cd512006 (diff)
downloadProject-Tick-2eae5db069dc171f74cd863487655f6a88e5384d.tar.gz
Project-Tick-2eae5db069dc171f74cd863487655f6a88e5384d.zip
NOISSUE rebrand vim to MNV's not Vim
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'uvim/runtime/syntax/fetchmail.vim')
-rw-r--r--uvim/runtime/syntax/fetchmail.vim83
1 files changed, 0 insertions, 83 deletions
diff --git a/uvim/runtime/syntax/fetchmail.vim b/uvim/runtime/syntax/fetchmail.vim
deleted file mode 100644
index 50d6b82562..0000000000
--- a/uvim/runtime/syntax/fetchmail.vim
+++ /dev/null
@@ -1,83 +0,0 @@
-" Vim syntax file
-" Language: fetchmail(1) RC File
-" Maintainer: Doug Kearns <dougkearns@gmail.com>
-" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
-" Latest Revision: 2022 Jul 02
-
-" Version 6.4.3
-
-if exists("b:current_syntax")
- finish
-endif
-
-let s:cpo_save = &cpo
-set cpo&vim
-
-syn keyword fetchmailTodo contained FIXME TODO XXX NOTE
-
-syn region fetchmailComment start='#' end='$' contains=fetchmailTodo,@Spell
-
-syn match fetchmailNumber display '\<\d\+\>'
-
-syn region fetchmailString start=+"+ skip=+\\\\\|\\"+ end=+"+
- \ contains=fetchmailStringEsc
-syn region fetchmailString start=+'+ skip=+\\\\\|\\'+ end=+'+
- \ contains=fetchmailStringEsc
-
-syn match fetchmailStringEsc contained '\\\([ntb]\|0\d*\|x\x\+\)'
-
-syn region fetchmailKeyword transparent matchgroup=fetchmailKeyword
- \ start='\<poll\|skip\|defaults\>'
- \ end='\<poll\|skip\|defaults\>'
- \ contains=ALLBUT,fetchmailOptions,fetchmailSet
-
-syn keyword fetchmailServerOpts contained via proto[col] local[domains] port
- \ service auth[enticate] timeout envelope
- \ qvirtual aka interface monitor plugin plugout
- \ dns checkalias uidl interval tracepolls
- \ principal esmtpname esmtppassword
-" removed in 6.3.0
-syn keyword fetchmailServerOpts contained netsec
-syn match fetchmailServerOpts contained '\<bad-header\>'
-syn match fetchmailServerOpts contained '\<no\_s\+\(envelope\|dns\|checkalias\|uidl\)'
-
-syn keyword fetchmailUserOpts contained user[name] is to pass[word] ssl
- \ sslcert sslcertck sslcertfile sslcertpath
- \ sslfingerprint sslkey sslproto folder
- \ smtphost fetchdomains smtpaddress smtpname
- \ antispam mda bsmtp preconnect postconnect
- \ keep flush limitflush fetchall rewrite
- \ stripcr forcecr pass8bits dropstatus
- \ dropdelivered mimedecode idle limit warnings
- \ batchlimit fetchlimit fetchsizelimit
- \ fastuidl expunge properties
- \ sslcommonname
-syn match fetchmailUserOpts contained '\<no\_s\+\(sslcertck\|keep\|flush\|fetchall\|rewrite\|stripcr\|forcecr\|pass8bits\|dropstatus\|dropdelivered\|mimedecode\|idle\)'
-
-syn keyword fetchmailSpecial contained here there
-
-syn keyword fetchmailNoise and with has wants options
-syn match fetchmailNoise display '[:;,]'
-
-syn keyword fetchmailSet nextgroup=fetchmailOptions skipwhite skipnl set
-
-syn keyword fetchmailOptions daemon postmaster bouncemail spambounce
- \ softbounce logfile pidfile idfile syslog properties
-syn match fetchmailOptions '\<no\_s\+\(bouncemail\|spambounce\|softbounce\|syslog\)'
-
-hi def link fetchmailComment Comment
-hi def link fetchmailTodo Todo
-hi def link fetchmailNumber Number
-hi def link fetchmailString String
-hi def link fetchmailStringEsc SpecialChar
-hi def link fetchmailKeyword Keyword
-hi def link fetchmailServerOpts Identifier
-hi def link fetchmailUserOpts Identifier
-hi def link fetchmailSpecial Special
-hi def link fetchmailSet Keyword
-hi def link fetchmailOptions Identifier
-
-let b:current_syntax = "fetchmail"
-
-let &cpo = s:cpo_save
-unlet s:cpo_save