view runtime/syntax/conf.vim @ 28485:75f181bef230 v8.2.4767

patch 8.2.4767: openscad files are not recognized Commit: https://github.com/vim/vim/commit/c360b2566ce2390d45d9436a6a85719fe2b387d5 Author: salkin-mada <adam@oddodd.org> Date: Sat Apr 16 21:33:54 2022 +0100 patch 8.2.4767: openscad files are not recognized Problem: Openscad files are not recognized. Solution: Add a filetype pattern. (Niklas Adam, closes https://github.com/vim/vim/issues/10199)
author Bram Moolenaar <Bram@vim.org>
date Sat, 16 Apr 2022 22:45:04 +0200
parents e3ec2ec8841a
children 4027cefc2aab
line wrap: on
line source

" Vim syntax file
" Language:	generic configure file
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last Change:	2021 May 01

" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
  finish
endif

syn keyword	confTodo	contained TODO FIXME XXX
" Avoid matching "text#text", used in /etc/disktab and /etc/gettytab
syn match	confComment	"^#.*" contains=confTodo,@Spell
syn match	confComment	"\s#.*"ms=s+1 contains=confTodo,@Spell
syn region	confString	start=+"+ skip=+\\\\\|\\"+ end=+"+ oneline
syn region	confString	start=+'+ skip=+\\\\\|\\'+ end=+'+ oneline

" Define the default highlighting.
" Only used when an item doesn't have highlighting yet
hi def link confComment	Comment
hi def link confTodo	Todo
hi def link confString	String

let b:current_syntax = "conf"

" vim: ts=8 sw=2