mirror of
https://github.com/luzifer/vim.git
synced 2024-12-20 10:21:19 +00:00
Add ABP syntax highlighting
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
d7d1090594
commit
c451fd6a36
2 changed files with 62 additions and 0 deletions
6
after/ftplugin/abp.vim
Normal file
6
after/ftplugin/abp.vim
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
function! s:DetectABP()
|
||||||
|
if getline(1) =~ '\c^\s*\[\s*adblock\s*\(plus\s*\(\d\+\(\.\d\+\)*\s*\)\?\)\?]\s*$'
|
||||||
|
set filetype=abp
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
au BufNewFile,BufRead *.txt call s:DetectABP()
|
56
after/syntax/abp.vim
Normal file
56
after/syntax/abp.vim
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
" Vim syntax file
|
||||||
|
" Language: Adblock Plus Filter Lists
|
||||||
|
" Maintainer: Thomas Greiner <https://www.greinr.com/>
|
||||||
|
" Version: 0.1
|
||||||
|
|
||||||
|
if exists("b:current_syntax")
|
||||||
|
finish
|
||||||
|
endif
|
||||||
|
|
||||||
|
" Blocking
|
||||||
|
syntax match abpBlocking "^[^\$]*" nextgroup=abpBlockingSeparator
|
||||||
|
syntax match abpBlockingSeparator "\$" contained nextgroup=abpBlockingOption
|
||||||
|
syntax match abpBlockingOption ".*" contained
|
||||||
|
|
||||||
|
" Blocking Exception
|
||||||
|
syntax match abpBlockingExceptionSeparator "^@@" nextgroup=abpBlockingException
|
||||||
|
syntax match abpBlockingException "[^\$]*" contained nextgroup=abpBlockingSeparator
|
||||||
|
|
||||||
|
" Comments
|
||||||
|
syntax match abpHeader "\c^\s*\[\s*adblock\s*\(plus\s*\(\d\+\(\.\d\+\)*\s*\)\?\)\?]\s*$"
|
||||||
|
syntax match abpComment "^\s*!.*" contains=abpCommentKey
|
||||||
|
syntax match abpCommentKey "^\s*!\s*[^:]\+:" contained nextgroup=abpCommentValue skipwhite
|
||||||
|
syntax match abpCommentValue ".*" contained
|
||||||
|
|
||||||
|
" Element Hiding
|
||||||
|
syntax match abpHidingOption "^[^#]*#@\?#.*" contains=abpHidingSeparator,abpHidingExceptionSeparator
|
||||||
|
syntax match abpHidingSeparator "##" contained nextgroup=abpHiding
|
||||||
|
syntax match abpHidingExceptionSeparator "#@#" contained nextgroup=abpHidingException
|
||||||
|
syntax match abpHiding ".*" contained
|
||||||
|
syntax match abpHidingException ".*" contained
|
||||||
|
|
||||||
|
" Highlights
|
||||||
|
hi link abpHeader Comment
|
||||||
|
hi link abpComment Comment
|
||||||
|
hi link abpCommentKey Comment
|
||||||
|
hi link abpCommentValue SpecialComment
|
||||||
|
hi link abpBlocking ABPBlock
|
||||||
|
hi link abpBlockingSeparator Delimiter
|
||||||
|
hi link abpBlockingOption ABPOption
|
||||||
|
hi link abpBlockingException ABPBlockException
|
||||||
|
hi link abpBlockingExceptionSeparator Delimiter
|
||||||
|
hi link abpHiding ABPElemhide
|
||||||
|
hi link abpHidingSeparator Delimiter
|
||||||
|
hi link abpHidingExceptionSeparator Delimiter
|
||||||
|
hi link abpHidingOption ABPOption
|
||||||
|
hi link abpHidingException ABPElemhideException
|
||||||
|
|
||||||
|
" Colors
|
||||||
|
hi Comment ctermfg=Gray guifg=Gray
|
||||||
|
hi SpecialComment ctermfg=DarkGray guifg=DarkGray
|
||||||
|
hi Delimiter ctermfg=DarkGray guifg=DarkGray
|
||||||
|
hi ABPBlock ctermfg=Red guifg=Red
|
||||||
|
hi ABPBlockException ctermfg=Green guifg=Green
|
||||||
|
hi ABPElemhide ctermfg=DarkRed guifg=DarkRed
|
||||||
|
hi ABPOption ctermfg=DarkBlue guifg=DarkBlue
|
||||||
|
hi ABPElemhideException ctermfg=DarkGreen guifg=DarkGreen
|
Loading…
Reference in a new issue