Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/vim73/indent/cs.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim73/indent/cs.vim')
-rw-r--r--vim73/indent/cs.vim15
1 files changed, 15 insertions, 0 deletions
diff --git a/vim73/indent/cs.vim b/vim73/indent/cs.vim
new file mode 100644
index 0000000..4a040b6
--- /dev/null
+++ b/vim73/indent/cs.vim
@@ -0,0 +1,15 @@
+" Vim indent file
+" Language: C#
+" Maintainer: Johannes Zellner <johannes@zellner.org>
+" Last Change: Fri, 15 Mar 2002 07:53:54 CET
+
+" Only load this indent file when no other was loaded.
+if exists("b:did_indent")
+ finish
+endif
+let b:did_indent = 1
+
+" C# is like indenting C
+setlocal cindent
+
+let b:undo_indent = "setl cin<"