.editorconfig
author Anton Shestakov <av6@dwimlabs.net>
Thu, 13 Dec 2018 17:18:57 +0800
changeset 40948 e54bfde922f2
parent 38293 1d6066336d7b
child 45411 c25efc468a49
permissions -rw-r--r--
revset: move subscript relation functions to its own dict This will help adding more relation functions in extensions. We skip short names (that consist of one letter) while raising UnknownIdentifier because such names cannot be suggested anyway: the similarity cutoff in dispatch._getsimilar() is currently 0.6.

# 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