Mercurial > vim
annotate runtime/ftplugin/html.vim @ 29357:f4ff490d51a7 v9.0.0021
patch 9.0.0021: invalid memory access when adding word to spell word list
Commit: https://github.com/vim/vim/commit/5e59ea54c0c37c2f84770f068d95280069828774
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jul 1 22:26:20 2022 +0100
patch 9.0.0021: invalid memory access when adding word to spell word list
Problem: Invalid memory access when adding word with a control character to
the internal spell word list.
Solution: Disallow adding a word with control characters or a trailing
slash.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 01 Jul 2022 23:30:02 +0200 |
parents | c968191a8557 |
children | 67f31c24291b |
rev | line source |
---|---|
7 | 1 " Vim filetype plugin file |
2 " Language: html | |
28010 | 3 " |
4 " This runtime file is looking for a new maintainer. | |
5 " | |
6 " Former maintainer: Dan Sharp | |
2034 | 7 " Last Changed: 20 Jan 2009 |
7 | 8 |
9 if exists("b:did_ftplugin") | finish | endif | |
10 let b:did_ftplugin = 1 | |
11 | |
12 " Make sure the continuation lines below do not cause problems in | |
13 " compatibility mode. | |
14 let s:save_cpo = &cpo | |
15 set cpo-=C | |
16 | |
1698 | 17 setlocal matchpairs+=<:> |
7 | 18 setlocal commentstring=<!--%s--> |
1698 | 19 setlocal comments=s:<!--,m:\ \ \ \ ,e:--> |
20 | |
21 if exists("g:ft_html_autocomment") && (g:ft_html_autocomment == 1) | |
22 setlocal formatoptions-=t formatoptions+=croql | |
23 endif | |
24 | |
844 | 25 if exists('&omnifunc') |
6009 | 26 setlocal omnifunc=htmlcomplete#CompleteTags |
27 call htmlcomplete#DetectOmniFlavor() | |
844 | 28 endif |
841 | 29 |
7 | 30 " HTML: thanks to Johannes Zellner and Benji Fisher. |
31 if exists("loaded_matchit") | |
32 let b:match_ignorecase = 1 | |
33 let b:match_words = '<:>,' . | |
34 \ '<\@<=[ou]l\>[^>]*\%(>\|$\):<\@<=li\>:<\@<=/[ou]l>,' . | |
35 \ '<\@<=dl\>[^>]*\%(>\|$\):<\@<=d[td]\>:<\@<=/dl>,' . | |
36 \ '<\@<=\([^/][^ \t>]*\)[^>]*\%(>\|$\):<\@<=/\1>' | |
37 endif | |
38 | |
39 " Change the :browse e filter to primarily show HTML-related files. | |
40 if has("gui_win32") | |
15 | 41 let b:browsefilter="HTML Files (*.html,*.htm)\t*.htm;*.html\n" . |
7 | 42 \ "JavaScript Files (*.js)\t*.js\n" . |
43 \ "Cascading StyleSheets (*.css)\t*.css\n" . | |
44 \ "All Files (*.*)\t*.*\n" | |
45 endif | |
46 | |
47 " Undo the stuff we changed. | |
1698 | 48 let b:undo_ftplugin = "setlocal commentstring< matchpairs< omnifunc< comments< formatoptions<" . |
7 | 49 \ " | unlet! b:match_ignorecase b:match_skip b:match_words b:browsefilter" |
50 | |
51 " Restore the saved compatibility options. | |
52 let &cpo = s:save_cpo | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
53 unlet s:save_cpo |