diff options
| author | Nathan Froyd <froydnj@gmail.com> | 2017-01-06 17:26:36 -0500 |
|---|---|---|
| committer | Nathan Froyd <froydnj@gmail.com> | 2017-01-06 17:26:36 -0500 |
| commit | 845209399c5e3e8138b5361f7fd406c7a22acbad (patch) | |
| tree | 4e7bd5602a8d1b411bd37bf22fcd0e401a58051c /rust-mode.el | |
| parent | e32765893ce2efb2db6662f507fb9d33d5c1b61b (diff) | |
| download | rust-mode-845209399c5e3e8138b5361f7fd406c7a22acbad.tar.gz | |
put remaining defcustoms into the rust-mode group
Diffstat (limited to 'rust-mode.el')
| -rw-r--r-- | rust-mode.el | 6 |
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)) |
