annotate runtime/syntax/quarto.vim @ 33206:3737c8d06c2f v9.0.1881

patch 9.0.1881: Test_crash fails on Mac Commit: https://github.com/vim/vim/commit/5856b07795dff69e3bac57deb5033b5839c1dfb8 Author: Christian Brabandt <cb@256bit.org> Date: Wed Sep 6 20:53:46 2023 +0200 patch 9.0.1881: Test_crash fails on Mac Problem: Test_crash fails on Mac Solution: Skip test on Mac Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 06 Sep 2023 21:00:07 +0200
parents b2412874362f
children 02bd0fe77c68
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32061
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Language: Quarto (Markdown with chunks of R, Python and other languages)
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Provisory Maintainer: Jakson Aquino <jalvesaq@gmail.com>
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Homepage: https://github.com/jalvesaq/R-Vim-runtime
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 " Last Change: Fri Feb 24, 2023 08:26AM
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 "
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 " The developers of tools for Quarto maintain Vim runtime files in their
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 " Github repository and, if required, I will hand over the maintenance of
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 " this script for them.
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 runtime syntax/rmd.vim
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 syn match quartoShortarg /\S\+/ contained
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 syn keyword quartoShortkey var meta env pagebreak video include contained
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 syn region quartoShortcode matchgroup=PreProc start='{{< ' end=' >}}' contains=quartoShortkey,quartoShortarg transparent keepend
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 hi def link quartoShortkey Include
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 hi def link quartoShortarg String