File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 34
34
* Fix fall back to sample ` prelude-modules.el ` not working if user has installed to non-default location.
35
35
* Stop requiring ` helm-config ` since upstream has removed the module.
36
36
* Require ` typescript-mode ` using ` prelude-require-packages ` to avoid error upon inclusion in ` personal/prelude-modules.el ` .
37
+ * Turn off ` super-save ` in ` rust-mode ` to prevent severe hangs during autocomplete.
37
38
38
39
## 1.1.0 (2021-02-14)
39
40
Original file line number Diff line number Diff line change 48
48
(require 'tree-sitter )
49
49
(require 'tree-sitter-langs )
50
50
51
+ (add-to-list 'super-save-predicates
52
+ (lambda () (not (eq major-mode 'rust-mode ))))
53
+
51
54
(with-eval-after-load 'rust-mode
52
55
(add-hook 'rust-mode-hook 'cargo-minor-mode )
53
56
(add-hook 'flycheck-mode-hook 'flycheck-rust-setup )
You can’t perform that action at this time.
0 commit comments