.editorconfig
author Yuya Nishihara <yuya@tcha.org>
Tue, 11 Feb 2020 19:53:56 +0900
branchstable
changeset 44179 5cd2d91eeebd
parent 38293 1d6066336d7b
child 45411 c25efc468a49
permissions -rw-r--r--
chgserver: spawn new process if schemes change The schemes extension updates hg.schemes table. It's technically possible for hg.repository() to look for e.g. ui.schemes instead of depending on module-local table, but I don't think the change would make much sense since [schemes] is usually specified in ~/.hgrc and thus it can be considered static data.

# 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