annotate runtime/syntax/quarto.vim @ 34470:dd8f5311cee5 v9.1.0147

patch 9.1.0147: Cannot keep a buffer focused in a window Commit: https://github.com/vim/vim/commit/215703563757a4464907ead6fb9edaeb7f430bea Author: Colin Kennedy <colinvfx@gmail.com> Date: Sun Mar 3 16:16:47 2024 +0100 patch 9.1.0147: Cannot keep a buffer focused in a window Problem: Cannot keep a buffer focused in a window (Amit Levy) Solution: Add the 'winfixbuf' window-local option (Colin Kennedy) fixes: #6445 closes: #13903 Signed-off-by: Colin Kennedy <colinvfx@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 03 Mar 2024 16:30:06 +0100
parents 02bd0fe77c68
children
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)
34375
02bd0fe77c68 runtime(misc): announce adoption of various runtime files
Christian Brabandt <cb@256bit.org>
parents: 32061
diff changeset
2 " Maintainer: This runtime file is looking for a new maintainer.
02bd0fe77c68 runtime(misc): announce adoption of various runtime files
Christian Brabandt <cb@256bit.org>
parents: 32061
diff changeset
3 " Former Maintainer: Jakson Alves de Aquino <jalvesaq@gmail.com>
02bd0fe77c68 runtime(misc): announce adoption of various runtime files
Christian Brabandt <cb@256bit.org>
parents: 32061
diff changeset
4 " Former Repository: https://github.com/jalvesaq/R-Vim-runtime
02bd0fe77c68 runtime(misc): announce adoption of various runtime files
Christian Brabandt <cb@256bit.org>
parents: 32061
diff changeset
5 " Last Change: 2023 Feb 24 08:26AM
02bd0fe77c68 runtime(misc): announce adoption of various runtime files
Christian Brabandt <cb@256bit.org>
parents: 32061
diff changeset
6 " 2024 Feb 19 by Vim Project (announce adoption)
32061
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 "
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 " The developers of tools for Quarto maintain Vim runtime files in their
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 " Github repository and, if required, I will hand over the maintenance of
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 " this script for them.
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 runtime syntax/rmd.vim
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 syn match quartoShortarg /\S\+/ contained
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 syn keyword quartoShortkey var meta env pagebreak video include contained
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 syn region quartoShortcode matchgroup=PreProc start='{{< ' end=' >}}' contains=quartoShortkey,quartoShortarg transparent keepend
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 hi def link quartoShortkey Include
b2412874362f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 hi def link quartoShortarg String