annotate runtime/indent/nginx.vim @ 31164:7831da568864
v9.0.0916
patch 9.0.0916: getbufline() is inefficient for getting a single line
Commit: https://github.com/vim/vim/commit/ce30ccc06af7f2c03762e5b18dde37b26ea6ec42
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Nov 21 19:57:04 2022 +0000
patch 9.0.0916: getbufline() is inefficient for getting a single line
Problem: getbufline() is inefficient for getting a single line.
Solution: Add getbufoneline().
author |
Bram Moolenaar <Bram@vim.org> |
date |
Mon, 21 Nov 2022 21:00:06 +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<"
|