annotate runtime/indent/nginx.vim @ 31406:627d4f236ac8
v9.0.1036
patch 9.0.1036: undo misbehaves when writing from an insert mode mapping
Commit: https://github.com/vim/vim/commit/3f8f82772313af9f2417b06651f30988b63e1c96
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Dec 8 21:49:35 2022 +0000
patch 9.0.1036: undo misbehaves when writing from an insert mode mapping
Problem: Undo misbehaves when writing from an insert mode mapping.
Solution: Sync undo when writing. (closes https://github.com/vim/vim/issues/11674)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Thu, 08 Dec 2022 23:00: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<"
|