annotate runtime/indent/nginx.vim @ 28923:2d726d5a6405
v8.2.4984
patch 8.2.4984: dragging statusline fails for window with winbar
Commit: https://github.com/vim/vim/commit/6dab00aa5417f62f8c2c85c7c4ae871b4f1171f4
Author: zeertzjq <zeertzjq@outlook.com>
Date: Fri May 20 13:45:59 2022 +0100
patch 8.2.4984: dragging statusline fails for window with winbar
Problem: Dragging statusline fails for window with winbar.
Solution: Fix off-by-one error. (closes https://github.com/vim/vim/issues/10448)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Fri, 20 May 2022 15:00:05 +0200 |
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<"
|