annotate runtime/syntax/gemtext.vim @ 29265:9bc63b4f9c33 v8.2.5151

patch 8.2.5151: reading beyond the end of the line with lisp indenting Commit: https://github.com/vim/vim/commit/8eba2bd291b347e3008aa9e565652d51ad638cfa Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jun 22 19:59:28 2022 +0100 patch 8.2.5151: reading beyond the end of the line with lisp indenting Problem: Reading beyond the end of the line with lisp indenting. Solution: Avoid going over the NUL at the end of the line.
author Bram Moolenaar <Bram@vim.org>
date Wed, 22 Jun 2022 21:00:03 +0200
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