X-Git-Url: https://vcs.fsf.org/?p=exim.git;a=blobdiff_plain;f=.editorconfig;h=90ad8b43a9e24d1a96b1dbe5f2ee90483106f3b2;hp=002005172f8400a3cd66fc5291ecc3ee2d524f21;hb=5e6d12accb0bdfa1cee9d8c9a1ecec3131b9f502;hpb=bf5ffbb0aff762cd4640141a76a3afebad02ad89 diff --git a/.editorconfig b/.editorconfig index 002005172..90ad8b43a 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,5 +1,13 @@ # Common text-editor configuration for Exim # http://editorconfig.org/ +# +# This system sets attributes of the code results of editing, not of +# how you set up the editor to do some helpful things for you. It's +# deliberately limited, to be non-contentious and avoid bloat. +# +# In this file, we'll also collect _suggestions_ for text editor configs +# for various text editors, to better work with what passes for a common +# style in Exim. Use, or don't use, those as you see fit. # top-most EditorConfig file root = true @@ -8,15 +16,26 @@ root = true [*] end_of_line = lf insert_final_newline = true - -[*.{c,h}] +trim_trailing_whitespace = true indent_style = space -indent_size = 2 tab_width = 8 -trim_trailing_whitespace = true -# vim users try: cinoptions=>1s,{1s + +[*.{c,h}{,-*}] +indent_size = 2 + +[runtest] +indent_size = 2 # Tab indentation (no size specified) [Makefile] indent_style = tab +# vim +# === +# try: set cinoptions=>1s,{1s +# +# More complete: +# if has("autocmd") +# au BufNewFile,BufRead */*exim*/src/* set noai nosmartindent expandtab cindent sw=2 cinoptions=>1s,{1s +# endif +