2014-07-10 21:05:51 -07:00
|
|
|
" Vim syntax file
|
|
|
|
" Language: Vim .viminfo file
|
2023-08-13 05:25:10 -07:00
|
|
|
" Maintainer: The Vim Project <https://github.com/vim/vim>
|
|
|
|
" Last Change: 2023 Aug 10
|
|
|
|
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
" Quit when a (custom) syntax file was already loaded
|
|
|
|
if exists("b:current_syntax")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
|
|
|
let s:cpo_save = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
|
|
|
" The lines that are NOT recognized
|
|
|
|
syn match viminfoError "^[^\t].*"
|
|
|
|
|
|
|
|
" The one-character one-liners that are recognized
|
|
|
|
syn match viminfoStatement "^[/&$@:?=%!<]"
|
|
|
|
|
|
|
|
" The two-character one-liners that are recognized
|
|
|
|
syn match viminfoStatement "^[-'>"]."
|
|
|
|
syn match viminfoStatement +^"".+
|
|
|
|
syn match viminfoStatement "^\~[/&]"
|
|
|
|
syn match viminfoStatement "^\~[hH]"
|
|
|
|
syn match viminfoStatement "^\~[mM][sS][lL][eE]\d\+\~\=[/&]"
|
|
|
|
|
|
|
|
syn match viminfoOption "^\*.*=" contains=viminfoOptionName
|
|
|
|
syn match viminfoOptionName "\*\a*"ms=s+1 contained
|
|
|
|
|
|
|
|
" Comments
|
|
|
|
syn match viminfoComment "^#.*"
|
|
|
|
|
2017-01-01 21:30:53 -07:00
|
|
|
" New style lines. TODO: highlight numbers and strings.
|
|
|
|
syn match viminfoNew "^|.*"
|
|
|
|
|
2014-07-10 21:05:51 -07:00
|
|
|
" Define the default highlighting.
|
|
|
|
" Only used when an item doesn't have highlighting yet
|
|
|
|
hi def link viminfoComment Comment
|
|
|
|
hi def link viminfoError Error
|
|
|
|
hi def link viminfoStatement Statement
|
2017-01-01 21:30:53 -07:00
|
|
|
hi def link viminfoNew String
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
let b:current_syntax = "viminfo"
|
|
|
|
|
|
|
|
let &cpo = s:cpo_save
|
|
|
|
unlet s:cpo_save
|
|
|
|
|
|
|
|
" vim: ts=8 sw=2
|