Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vim
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Someone-Else
Vim
Commits
5c6a2d53
Commit
5c6a2d53
authored
19 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.0b01
parent
bd404149
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
nsis/icons/disabled.bmp
+0
-0
0 additions, 0 deletions
nsis/icons/disabled.bmp
runtime/syntax/dns.vim
+2
-44
2 additions, 44 deletions
runtime/syntax/dns.vim
with
2 additions
and
44 deletions
nsis/icons/disabled.bmp
0 → 100644
+
0
−
0
View file @
5c6a2d53
358 B
This diff is collapsed.
Click to expand it.
runtime/syntax/dns.vim
+
2
−
44
View file @
5c6a2d53
" Vim syntax file
" Language: DNS/BIND Zone File
" Maintainer: jehsom@jehsom.com
" URL: http://scripts.jehsom.com
" Last Change: 2001 Sep 02
" For version 5.x: Clear all syntax items
" For version 6.x: Quit when a syntax file was already loaded
if
version
<
600
syntax
clear
elseif
exists
(
"b:current_syntax"
)
finish
endif
" Last match is taken!
syn
match
dnsKeyword
"\<\(IN\|A\|SOA\|NS\|CNAME\|MX\|PTR\|SOA\|MB\|MG\|MR\|NULL\|WKS\|HINFO\|TXT\|CS\|CH\|CPU\|OS\)\>"
syn
match
dnsRecordName
"^[^ ]*"
syn
match
dnsPreProc
"^\$[^ ]*"
syn
match
dnsComment
";.*$"
syn
match
dnsDataFQDN
"\<[^ ]*\.[ ]*$"
syn
match
dnsConstant
"\<\([0-9][0-9.]*\|[0-9.]*[0-9]\)\>"
syn
match
dnsIPaddr
"\<\(\([0-2]\)\{0,1}\([0-9]\)\{1,2}\.\)\{3}\([0-2]\)\{0,1}\([0-9]\)\{1,2}\>[ ]*$"
" Define the default highlighting.
" For version 5.7 and earlier: only when not done already
" For version 5.8 and later: only when an item doesn't have highlighting yet.
if
version
>=
508
||
!
exists
(
"did_dns_syntax_inits"
)
if
version
<
508
let
did_dns_syntax_inits
=
1
command
-
nargs
=+
HiLink
hi
link
<
args
>
else
command
-
nargs
=+
HiLink
hi
def
link
<
args
>
endif
HiLink dnsComment Comment
HiLink dnsDataFQDN Identifier
HiLink dnsPreProc PreProc
HiLink dnsKeyword Keyword
HiLink dnsRecordName Type
HiLink dnsIPaddr Type
HiLink dnsIPerr Error
HiLink dnsConstant Constant
delcommand
HiLink
endif
let
b:current_syntax
=
"dns"
" This has been replaced by the bindzone syntax
:
runtime
!
syntax
/bindzone
.
vim
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment