annotate runtime/indent/nginx.vim @ 28505:8751e815864e v8.2.4777

patch 8.2.4777: screendump tests fail because of a redraw Commit: https://github.com/vim/vim/commit/366f0bdd08ae8f4aec38bca6b02ba41adae6ffce Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 17 19:20:33 2022 +0100 patch 8.2.4777: screendump tests fail because of a redraw Problem: Screendump tests fail because of a redraw. Solution: Do not output t_8u before receiving termresponse. Redraw only when t_8u is not reset and termresponse is received.
author Bram Moolenaar <Bram@vim.org>
date Sun, 17 Apr 2022 20:30:02 +0200
parents 6dd88e45d47d
children 7d68a90cbf5c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25880
9c221ad9634a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim indent file
9c221ad9634a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: nginx.conf
9c221ad9634a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Maintainer: Chris Aumann <me@chr4.org>
28379
6dd88e45d47d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25880
diff changeset
4 " Last Change: 2022 Apr 06
25880
9c221ad9634a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5
9c221ad9634a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 if exists("b:did_indent")
9c221ad9634a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 finish
9c221ad9634a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 endif
9c221ad9634a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 let b:did_indent = 1
9c221ad9634a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10
9c221ad9634a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 setlocal indentexpr=
9c221ad9634a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12
9c221ad9634a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 " cindent actually works for nginx' simple file structure
9c221ad9634a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 setlocal cindent
9c221ad9634a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15
9c221ad9634a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 " Just make sure that the comments are not reset as defs would be.
9c221ad9634a Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 setlocal cinkeys-=0#
28379
6dd88e45d47d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25880
diff changeset
18
6dd88e45d47d Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25880
diff changeset
19 let b:undo_indent = "setl inde< cin< cink<"