annotate runtime/syntax/gemtext.vim @ 26480:cf986610be6a v8.2.3770

patch 8.2.3770: new compiler warnings from clang-12 and clang-13 Commit: https://github.com/vim/vim/commit/dee78e1ce857985c06ff18e20daeadfe1622b8ae Author: ichizok <gclient.gaap@gmail.com> Date: Thu Dec 9 21:08:01 2021 +0000 patch 8.2.3770: new compiler warnings from clang-12 and clang-13 Problem: New compiler warnings from clang-12 and clang-13. Solution: Adjust CI and suppress some warnings. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/9314)
author Bram Moolenaar <Bram@vim.org>
date Thu, 09 Dec 2021 22:15:03 +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