File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 146
146
147
147
(defgroup rust-mode nil
148
148
" Support for Rust code."
149
- :link '(url-link " http ://www.rust-lang.org/" )
149
+ :link '(url-link " https ://www.rust-lang.org/" )
150
150
:group 'languages )
151
151
152
152
(defcustom rust-indent-offset 4
@@ -172,7 +172,7 @@ function or trait. When nil, where will be aligned with fn or trait."
172
172
" Format string to use when submitting code to the playpen"
173
173
:type 'string
174
174
:group 'rust-mode )
175
- (defcustom rust-shortener-url-format " http ://is.gd/create.php?format=simple&url=%s"
175
+ (defcustom rust-shortener-url-format " https ://is.gd/create.php?format=simple&url=%s"
176
176
" Format string to use for creating the shortened link of a playpen submission"
177
177
:type 'string
178
178
:group 'rust-mode )
@@ -187,11 +187,13 @@ function or trait. When nil, where will be aligned with fn or trait."
187
187
(defcustom rust-format-on-save nil
188
188
" Format future rust buffers before saving using rustfmt."
189
189
:type 'boolean
190
- :safe #'booleanp )
190
+ :safe #'booleanp
191
+ :group 'rust-mode )
191
192
192
193
(defcustom rust-rustfmt-bin " rustfmt"
193
194
" Path to rustfmt executable."
194
- :type 'string )
195
+ :type 'string
196
+ :group 'rust-mode )
195
197
196
198
(defface rust-unsafe-face
197
199
'((t :inherit font-lock-warning-face ))
You can’t perform that action at this time.
0 commit comments