annotate runtime/indent/nginx.vim @ 31077:6a2b04cd0213
v9.0.0873
patch 9.0.0873: using freed memory when executing mapclear at more prompt
Commit: https://github.com/vim/vim/commit/bf533e4e88ebac8b8fec6d3e12dadc476ce9a1df
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Nov 13 20:43:19 2022 +0000
patch 9.0.0873: using freed memory when executing mapclear at more prompt
Problem: Using freed memory when executing mapclear at the more prompt.
Solution: Do not clear mappings while listing them. (closes https://github.com/vim/vim/issues/11438)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 13 Nov 2022 21:45:03 +0100 |
parents |
6dd88e45d47d |
children |
7d68a90cbf5c |
rev |
line source |
25880
|
1 " Vim indent file
|
|
2 " Language: nginx.conf
|
|
3 " Maintainer: Chris Aumann <me@chr4.org>
|
28379
|
4 " Last Change: 2022 Apr 06
|
25880
|
5
|
|
6 if exists("b:did_indent")
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_indent = 1
|
|
10
|
|
11 setlocal indentexpr=
|
|
12
|
|
13 " cindent actually works for nginx' simple file structure
|
|
14 setlocal cindent
|
|
15
|
|
16 " Just make sure that the comments are not reset as defs would be.
|
|
17 setlocal cinkeys-=0#
|
28379
|
18
|
|
19 let b:undo_indent = "setl inde< cin< cink<"
|