summaryrefslogtreecommitdiff
path: root/rust-mode.el
diff options
context:
space:
mode:
authorSebastien Chapuis <sebastien@chapu.is>2018-01-06 00:39:47 +0100
committerSebastien Chapuis <sebastien@chapu.is>2018-01-09 13:20:55 +0100
commit216faf2a7372a252a7e2190c9a7474dcab71e93a (patch)
treef768e33393c08cf535cf65482377656230618445 /rust-mode.el
parent27911c88b0d32b66429d61bb056ecf1b10e66598 (diff)
downloadrust-mode-216faf2a7372a252a7e2190c9a7474dcab71e93a.tar.gz
Do not indent where clause by default (follow standard) #257
Diffstat (limited to 'rust-mode.el')
-rw-r--r--rust-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust-mode.el b/rust-mode.el
index 6193ebe..4fc1783 100644
--- a/rust-mode.el
+++ b/rust-mode.el
@@ -121,7 +121,7 @@
:group 'rust-mode
:safe #'booleanp)
-(defcustom rust-indent-where-clause t
+(defcustom rust-indent-where-clause nil
"Indent the line starting with the where keyword following a
function or trait. When nil, where will be aligned with fn or trait."
:type 'boolean