view runtime/indent/c.vim @ 32817:4fa5838c6952

Added tag v9.0.1722 for changeset 939396a5711c77c04810ba0fbff268fc0afb1ce5
author Christian Brabandt <cb@256bit.org>
date Thu, 17 Aug 2023 22:15:05 +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<"