annotate runtime/syntax/gemtext.vim @ 27655:3d4609ea2b58 v8.2.4353

patch 8.2.4353: CI does not use the latest Lua and Python Commit: https://github.com/vim/vim/commit/18f7593e57730e6de7c2cf47c87e44252cfbb61e Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Sat Feb 12 10:53:07 2022 +0000 patch 8.2.4353: CI does not use the latest Lua and Python Problem: CI does not use the latest Lua and Python. Solution: Use Lua 5.4.2 and Python 3.10. (closes https://github.com/vim/vim/issues/9744)
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Feb 2022 12:00:05 +0100
parents d4faa2c5211b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25700
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim syntax file
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: Gemtext markup language
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Maintainer: Suneel Freimuth <suneelfreimuth1@gmail.com>
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 " Latest Revision: 2020-11-21
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 " Filenames: *.gmi
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 if exists('b:current_syntax')
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 finish
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 endif
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 syntax match Heading /^#\{1,3}.\+$/
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 syntax match List /^\* /
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 syntax match LinkURL /^=>\s*\S\+/
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 syntax match Quote /^>.\+/
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 syntax region Preformatted start=/^```/ end=/```/
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 highlight default link Heading Special
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 highlight default link List Statement
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 highlight default link LinkURL Underlined
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 highlight default link Quote Constant
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 highlight default link Preformatted Identifier
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 let b:current_syntax = 'gemtext'
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24