view runtime/syntax/libao.vim @ 35360:7264594fc147 default tip

runtime(termdebug): fix mousemodel restoration by comparing against null_string Commit: https://github.com/vim/vim/commit/dfc21db0b0f9c61d66aeefc02ec4c06ec645bd09 Author: Ernie Rael <errael@raelity.com> Date: Mon Jun 10 18:12:07 2024 +0200 runtime(termdebug): fix mousemodel restoration by comparing against null_string closes: https://github.com/vim/vim/issues/14951 Signed-off-by: Ernie Rael <errael@raelity.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Mon, 10 Jun 2024 18:15:05 +0200
parents 1218c5353e2b
children
line wrap: on
line source

" Vim syntax file
" Language:             libao.conf(5) configuration file
" Previous Maintainer:  Nikolai Weibull <now@bitwi.se>
" Latest Revision:      2006-04-19

if exists("b:current_syntax")
  finish
endif

let s:cpo_save = &cpo
set cpo&vim

syn keyword libaoTodo     contained TODO FIXME XXX NOTE

syn region  libaoComment  display oneline start='^\s*#' end='$'
                          \ contains=libaoTodo,@Spell

syn keyword libaoKeyword  default_driver

hi def link libaoTodo     Todo
hi def link libaoComment  Comment
hi def link libaoKeyword  Keyword

let b:current_syntax = "libao"

let &cpo = s:cpo_save
unlet s:cpo_save