blob: 80c9a2f55904a118e44230576de47947ee415452 [file] [log] [blame]
Bram Moolenaara5792f52005-11-23 21:25:05 +00001" Vim indent file for the D programming language (version 0.137).
Bram Moolenaara5792f52005-11-23 21:25:05 +00002" Language: D
Bram Moolenaar6e649222021-10-04 21:32:54 +01003" Maintainer: Jason Mills <jmills@cs.mun.ca> (Invalid email address)
4" Doug Kearns <dougkearns@gmail.com>
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +01005" Last Change: 2022 Apr 06
Bram Moolenaara5792f52005-11-23 21:25:05 +00006" Version: 0.1
7"
8" Please email me with bugs, comments, and suggestion. Put vim in the subject
9" to ensure the email will not be marked has spam.
10"
11
12" Only load this indent file when no other was loaded.
13if exists("b:did_indent")
14 finish
15endif
16
17let b:did_indent = 1
18
19" D indenting is a lot like the built-in C indenting.
20setlocal cindent
21
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +010022let b:undo_indent = "setl cin<"
23
Bram Moolenaara5792f52005-11-23 21:25:05 +000024" vim: ts=8 noet