view runtime/indent/c.vim @ 35042:efef66876fb4

Added tag v9.1.0370 for changeset e671080ef0e2e8d92a05044905761b1414755cf5
author Christian Brabandt <cb@256bit.org>
date Thu, 25 Apr 2024 21:30:12 +0200
parents 4027cefc2aab
children
line wrap: on
line source

" Vim indent file
" Language:	C
" Maintainer:	The Vim Project <https://github.com/vim/vim>
" Last Change:	2023 Aug 10
" Former Maintainer:	Bram Moolenaar <Bram@vim.org>

" 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<"