.editorconfig
author Yuya Nishihara <yuya@tcha.org>
Sat, 15 Sep 2018 12:44:23 +0900
changeset 39753 b05b4b91de3d
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
bookmarks: add explicit option to list bookmarks of the given names This is a generalized form of the --active option. A redundant sorted() call is removed. There was no point to update dict items in lexicographical order.

# See http://EditorConfig.org for the specification

root = true

[*.py]
indent_size = 4
indent_style = space
trim_trailing_whitespace = true

[*.{c,h}]
indent_size = 8
indent_style = tab
trim_trailing_whitespace = true

[*.t]
indent_size = 2
indent_style = space
trim_trailing_whitespace = false