bip/samples/bip.vim

167 lines
5.5 KiB
VimL
Raw Normal View History

2005-04-28 10:26:44 +02:00
" Vim syntax file
" Language: Bip configuration file
2008-01-09 23:45:40 +01:00
" Copyright: Copyright (C) 2004 Arnaud Cornet and Loïc Gomez
2005-04-28 10:26:44 +02:00
" License: This file is part of the bip project. See the file 'COPYING' for
" the exact licensing terms.
"
"
" 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
syn case ignore
" Global elements
syn match bipComment contained %\s*#.*$%
syn match bipEndError contained /\(#.*\)\@<![^;{]$/
" Possible values types.
syn region bipString contained start=+"+ end=+"+
syn keyword bipBool contained true false
syn match bipNumeric contained /\d\d*/
2005-05-11 14:26:21 +02:00
syn region bipIP contained start=+"+ end=+"+
\ contains=bipAddrTk,bipDot
syn region bipNetmask contained start=+"+ end=+"+
\ contains=bipAddrTk,bipDot,bipSlash,bipMask
2005-04-28 10:26:44 +02:00
syn match bipAddrTk contained #\d\{1,3}#
syn match bipDot contained #\.#
syn match bipSlash contained #/#
syn match bipMask contained #\d\{1,2}#
syn match bipWhite contained +#\@!\s*+
" wrong
" syn match bipWhite contained +^\s*\ze[^#]*+
" Values syntax
2005-05-11 14:26:21 +02:00
syn region bipStringV contained matchgroup=Delimiter start=/\s*=\s*/
\ end=/\s*;\s*/ contains=bipString
syn region bipBoolV contained matchgroup=Delimiter start=/\s*=\s*/
\ end=/\s*;\s*/ contains=bipBool
syn region bipNumericV contained matchgroup=Delimiter start=/\s*=\s*/
\ end=/\s*;\s*/ contains=bipNumeric
syn region bipIPV contained matchgroup=Delimiter start=/\s*=\s*/
\ end=/\s*;\s*/ contains=bipIP
syn region bipNetmaskV contained matchgroup=Delimiter start=/\s*=\s*/
\ end=/\s*;\s*/ contains=bipNetmask
2005-04-28 10:26:44 +02:00
2005-05-11 14:26:21 +02:00
syn region bipMain start=/\%^/ end=/\%$/
\ contains=bipKeyword,bipNetwork,bipUser,bipComment,bipEndError
2005-04-28 10:26:44 +02:00
" Top level elements
syn keyword bipKeyword contained nextgroup=bipBoolV client_side_ssl
\ log log_system
2005-05-11 14:26:21 +02:00
syn keyword bipKeyword contained nextgroup=bipStringV log_root
2016-06-29 19:55:27 +02:00
\ log_format oidentd_file pid_file client_side_ssl_pem client_side_ciphers
\ ssl_default_ciphers
2005-05-11 14:26:21 +02:00
syn keyword bipKeyword contained nextgroup=bipNumericV port log_level
\ log_sync_interval
2005-04-28 10:26:44 +02:00
syn keyword bipKeyword contained nextgroup=bipIPV ip
" Network block (level 1)
2005-05-11 14:26:21 +02:00
syn region bipNetwork contained matchgroup=Macro
\ start=/network\s*{\s*/ end=/};/
\ contains=bipNKeyword,bipServer,bipComment,bipEndError,bipWhite
syn keyword bipNKeyword contained nextgroup=bipStringV name ciphers
2005-04-28 10:26:44 +02:00
syn keyword bipNKeyword contained nextgroup=bipBoolV ssl
" User block (level 1)
2005-05-11 14:26:21 +02:00
syn region bipUser contained matchgroup=Macro start=/user\s*{\s*/
\ end=/};/
2007-09-27 01:08:10 +02:00
\ contains=bipUKeyword,bipConnection,bipComment,bipEndError,bipWhite
2005-05-11 14:26:21 +02:00
syn keyword bipUKeyword contained nextgroup=bipStringV password name
\ default_nick default_user default_realname ssl_check_store
\ ssl_check_mode ssl_client_certfile
syn keyword bipUKeyword contained nextgroup=bipNumericV backlog_lines
2007-09-27 01:08:10 +02:00
syn keyword bipUKeyword contained nextgroup=bipBoolV admin
" DEPRECATED \ always_backlog bl_msg_only blreset_on_talk
\ backlog_no_timestamp backlog backlog_reset_on_talk
\ backlog_msg_only backlog_always bip_use_notice
2005-04-28 10:26:44 +02:00
" Connection block (level 2)
2005-05-11 14:26:21 +02:00
syn region bipConnection contained matchgroup=Macro
\ start=/connection\s*{\s*/ end=/};/
\ contains=bipCoKeyword,bipChannel,bipComment,bipEndError,bipWhite
syn keyword bipCoKeyword contained nextgroup=bipBoolV follow_nick
\ ignore_first_nick log
2005-05-11 14:26:21 +02:00
syn keyword bipCoKeyword contained nextgroup=bipStringV name user nick
\ network password vhost away_nick on_connect_send realname
\ no_client_away_msg ssl_check_mode
2005-04-28 10:26:44 +02:00
syn keyword bipCoKeyword contained nextgroup=bipNumericV source_port
" Channel elements (lvl 2)
2005-05-11 14:26:21 +02:00
syn region bipChannel contained matchgroup=Macro
\ start=/channel\s*{\s*/ end=/};/
\ contains=bipCKeyword,bipComment,bipEndError,bipWhite
2005-04-28 10:26:44 +02:00
syn keyword bipCKeyword contained nextgroup=bipStringV name key
2007-09-27 01:08:10 +02:00
syn keyword bipCKeyword contained nextgroup=bipBoolV backlog
2005-04-28 10:26:44 +02:00
" Server elements (lvl 2)
2005-05-11 14:26:21 +02:00
syn region bipServer contained matchgroup=Macro
\ start=/server\s*{\s*/ end=/};/
\ contains=bipSKeyword,bipComment,bipEndError,bipWhite
2005-04-28 10:26:44 +02:00
syn keyword bipSKeyword contained nextgroup=bipStringV host
syn keyword bipSKeyword contained nextgroup=bipNumericV port
" Client elements (lvl 2)
2005-05-11 14:26:21 +02:00
"syn region bipClient contained matchgroup=Macro
" \ start=/client\s*{\s*/ end=/};/
" \ contains=bipCLKeyword,bipComment,bipEndError,bipWhite
"syn keyword bipCLKeyword contained nextgroup=bipStringV user password
2005-04-28 10:26:44 +02:00
" Synchronization
2005-05-11 14:26:21 +02:00
syn sync match bipSyncNet grouphere bipNetwork /\_.\s*\(network\s*{\)\@=+/
syn sync match bipSyncUser grouphere bipUser /\_.\s*\(user\s*{\)\@=+/
2005-04-28 10:26:44 +02:00
" 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
command -nargs=+ HiLink hi link <args>
else
command -nargs=+ HiLink hi def link <args>
endif
HiLink bipMain Error
HiLink bipNetwork Error
HiLink bipChannel Error
HiLink bipServer Error
HiLink bipUser Error
2005-05-11 14:26:21 +02:00
HiLink bipConnection Error
2005-04-28 10:26:44 +02:00
" We do not HiLink bipWhite, siec we only want to ignore it.
HiLink bipKeyword Keyword
HiLink bipNKeyword Keyword
HiLink bipUKeyword Keyword
HiLink bipCKeyword Keyword
HiLink bipSKeyword Keyword
HiLink bipCoKeyword Keyword
HiLink bipComment Comment
HiLink bipMatch Include
HiLink bipStringV Error
HiLink bipBoolV Error
HiLink bipNumericV Error
HiLink bipIPV Error
HiLink bipEndError Error
HiLink bipString String
HiLink bipBool Boolean
HiLink bipNumeric Number
HiLink bipIP String
HiLink bipAddrTk String
HiLink bipDot Delimiter
HiLink bipSlash Delimiter
HiLink bipMask Number
delcommand HiLink
let b:current_syntax = "bip"
" vim: ts=8