.editorconfig
author feyu@google.com
Thu, 25 Apr 2019 15:30:40 -0700
changeset 42263 c4a50e863ee2
parent 38293 1d6066336d7b
child 45411 c25efc468a49
permissions -rw-r--r--
histedit: Speed up scrolling in patch view mode Store patchcontents into the mode state, avoiding the expensive call to ui for computing the patchcontents. Before this change in large repos histedit patch view mode can be very irresponsive.

# 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