summaryrefslogtreecommitdiff
path: root/rust-mode.el
diff options
context:
space:
mode:
authorNathan Froyd <froydnj@gmail.com>2017-01-06 17:26:36 -0500
committerNathan Froyd <froydnj@gmail.com>2017-01-06 17:26:36 -0500
commit845209399c5e3e8138b5361f7fd406c7a22acbad (patch)
tree4e7bd5602a8d1b411bd37bf22fcd0e401a58051c /rust-mode.el
parente32765893ce2efb2db6662f507fb9d33d5c1b61b (diff)
downloadrust-mode-845209399c5e3e8138b5361f7fd406c7a22acbad.tar.gz
put remaining defcustoms into the rust-mode group
Diffstat (limited to 'rust-mode.el')
-rw-r--r--rust-mode.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/rust-mode.el b/rust-mode.el
index 60a81f1..346e172 100644
--- a/rust-mode.el
+++ b/rust-mode.el
@@ -187,11 +187,13 @@ function or trait. When nil, where will be aligned with fn or trait."
(defcustom rust-format-on-save nil
"Format future rust buffers before saving using rustfmt."
:type 'boolean
- :safe #'booleanp)
+ :safe #'booleanp
+ :group 'rust-mode)
(defcustom rust-rustfmt-bin "rustfmt"
"Path to rustfmt executable."
- :type 'string)
+ :type 'string
+ :group 'rust-mode)
(defface rust-unsafe-face
'((t :inherit font-lock-warning-face))