view runtime/indent/c.vim @ 15723:bec05be6858a v8.1.0869

patch 8.1.0869: Travis CI script is too complicated commit https://github.com/vim/vim/commit/01a6c21691631ee55744a1799a9725e5d6521cf4 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 3 13:13:18 2019 +0100 patch 8.1.0869: Travis CI script is too complicated Problem: Travis CI script is too complicated. Solution: Add names to environments. Move appveyor script outside of src directory. (Ozaki Kiichi, closes #3890)
author Bram Moolenaar <Bram@vim.org>
date Sun, 03 Feb 2019 13:15:06 +0100
parents fca8a9b65afa
children 4027cefc2aab
line wrap: on
line source

" Vim indent file
" Language:	C
" Maintainer:	Bram Moolenaar <Bram@vim.org>
" Last Change:	2005 Mar 27

" Only load this indent file when no other was loaded.
if exists("b:did_indent")
   finish
endif
let b:did_indent = 1

" C indenting is built-in, thus this is very simple
setlocal cindent

let b:undo_indent = "setl cin<"