blob: 11b1f67790038203d355edbd48217c1841b0ae1d [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim indent file
2" Language: Ch
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003" Maintainer: SoftIntegration, Inc. <info@softintegration.com>
4" URL: http://www.softintegration.com/download/vim/indent/ch.vim
5" Last change: 2006 Apr 30
dkearns0382f052023-08-29 05:32:59 +10006" 2023 Aug 28 by Vim Project (undo_indent)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00007" Created based on cpp.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +00008"
9" Ch is a C/C++ interpreter with many high level extensions
10
11
12" Only load this indent file when no other was loaded.
13if exists("b:did_indent")
14 finish
15endif
16let b:did_indent = 1
17
18" Ch indenting is built-in, thus this is very simple
19setlocal cindent
dkearns0382f052023-08-29 05:32:59 +100020
21let b:undo_indent = "setlocal cindent<"