annotate runtime/indent/ch.vim @ 27317:839be955609f
v8.2.4187
patch 8.2.4187: gnuplot file not recognized
Commit: https://github.com/vim/vim/commit/ff5cbe8133c6eb5dd86b9e042f32f589627e9bf9
Author: nobodyatandnothing <you@example.com>
Date: Sun Jan 23 11:19:37 2022 +0000
patch 8.2.4187: gnuplot file not recognized
Problem: Gnuplot file not recognized.
Solution: Recognize ".gnuplot". (closes https://github.com/vim/vim/issues/9588)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 23 Jan 2022 12:30:04 +0100 |
parents |
8cd729851562 |
children |
5c220cf30f1f |
rev |
line source |
7
|
1 " Vim indent file
|
|
2 " Language: Ch
|
856
|
3 " Maintainer: SoftIntegration, Inc. <info@softintegration.com>
|
|
4 " URL: http://www.softintegration.com/download/vim/indent/ch.vim
|
|
5 " Last change: 2006 Apr 30
|
|
6 " Created based on cpp.vim
|
7
|
7 "
|
|
8 " Ch is a C/C++ interpreter with many high level extensions
|
|
9
|
|
10
|
|
11 " Only load this indent file when no other was loaded.
|
|
12 if exists("b:did_indent")
|
|
13 finish
|
|
14 endif
|
|
15 let b:did_indent = 1
|
|
16
|
|
17 " Ch indenting is built-in, thus this is very simple
|
|
18 setlocal cindent
|