Mercurial > vim
annotate runtime/syntax/gemtext.vim @ 26773:80e134cbee4b v8.2.3915
patch 8.2.3915: illegal memory access when completing with invalid bytes
Commit: https://github.com/vim/vim/commit/4b28ba3245df8274303c79429972f9dc9438e4aa
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Dec 27 19:28:37 2021 +0000
patch 8.2.3915: illegal memory access when completing with invalid bytes
Problem: illegal memory access when completing with invalid bytes.
Solution: Avoid going over the end of the completion text.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 27 Dec 2021 20:30:03 +0100 |
parents | d4faa2c5211b |
children |
rev | line source |
---|---|
25700 | 1 " Vim syntax file |
2 " Language: Gemtext markup language | |
3 " Maintainer: Suneel Freimuth <suneelfreimuth1@gmail.com> | |
4 " Latest Revision: 2020-11-21 | |
5 " Filenames: *.gmi | |
6 | |
7 if exists('b:current_syntax') | |
8 finish | |
9 endif | |
10 | |
11 syntax match Heading /^#\{1,3}.\+$/ | |
12 syntax match List /^\* / | |
13 syntax match LinkURL /^=>\s*\S\+/ | |
14 syntax match Quote /^>.\+/ | |
15 syntax region Preformatted start=/^```/ end=/```/ | |
16 | |
17 highlight default link Heading Special | |
18 highlight default link List Statement | |
19 highlight default link LinkURL Underlined | |
20 highlight default link Quote Constant | |
21 highlight default link Preformatted Identifier | |
22 | |
23 let b:current_syntax = 'gemtext' | |
24 |