view runtime/syntax/quarto.vim @ 32955:2cbc8ebb8de5

runtime(gp): update gp.vim syntax file for the GP language (version 2.15) (#12884) Commit: https://github.com/vim/vim/commit/c6d533b0ad565a610a48386b0ad72cc591010fcb Author: Karim Belabas <Karim.belabas@math.u-bordeaux.fr> Date: Tue Aug 22 20:25:06 2023 +0200 runtime(gp): update gp.vim syntax file for the GP language (version 2.15) (https://github.com/vim/vim/issues/12884) - add missing defaults - add missing control structures (incl. parallelism) - add missing scope declarations - whitespace edits (remove extra tabs)
author Christian Brabandt <cb@256bit.org>
date Tue, 22 Aug 2023 20:30:04 +0200
parents b2412874362f
children 02bd0fe77c68
line wrap: on
line source

" Language: Quarto (Markdown with chunks of R, Python and other languages)
" Provisory Maintainer: Jakson Aquino <jalvesaq@gmail.com>
" Homepage: https://github.com/jalvesaq/R-Vim-runtime
" Last Change: Fri Feb 24, 2023  08:26AM
"
" The developers of tools for Quarto maintain Vim runtime files in their
" Github repository and, if required, I will hand over the maintenance of
" this script for them.

runtime syntax/rmd.vim

syn match quartoShortarg /\S\+/ contained
syn keyword quartoShortkey var meta env pagebreak video include contained
syn region quartoShortcode matchgroup=PreProc start='{{< ' end=' >}}' contains=quartoShortkey,quartoShortarg transparent keepend

hi def link quartoShortkey Include
hi def link quartoShortarg String