.editorconfig
author Anton Shestakov <av6@dwimlabs.net>
Wed, 22 Aug 2018 09:12:22 +0800
changeset 39394 09f23b4f1be3
parent 38281 1d6066336d7b
child 45392 c25efc468a49
permissions -rw-r--r--
zsh_completion: handle --rev as well as -r for diff and revert Completion for hg diff and revert should suggest all files in context of a non-current revision. The script used to look only for `-r foo`, and now it also understands `--rev foo`. Differential Revision: https://phab.mercurial-scm.org/D4427

# 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