emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/rust-mode 5585cf9 477/486: rust-mode: Cosmetics


From: ELPA Syncer
Subject: [nongnu] elpa/rust-mode 5585cf9 477/486: rust-mode: Cosmetics
Date: Sat, 7 Aug 2021 09:26:18 -0400 (EDT)

branch: elpa/rust-mode
commit 5585cf95590a3950262c4b3ca9390980de713b3a
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: brotzeit <brotzeitmacher@gmail.com>

    rust-mode: Cosmetics
---
 rust-mode.el | 24 ++++++++++++++----------
 1 file changed, 14 insertions(+), 10 deletions(-)

diff --git a/rust-mode.el b/rust-mode.el
index d77ba67..21fdd24 100644
--- a/rust-mode.el
+++ b/rust-mode.el
@@ -257,17 +257,18 @@ Use idomenu (imenu with `ido-mode') for best mileage.")
   :group 'rust-mode
   :syntax-table rust-mode-syntax-table
 
-  ;; Syntax.
+  ;; Syntax
   (setq-local syntax-propertize-function #'rust-syntax-propertize)
 
   ;; Indentation
   (setq-local indent-line-function 'rust-mode-indent-line)
 
   ;; Fonts
-  (setq-local font-lock-defaults '(rust-font-lock-keywords
-                                   nil nil nil nil
-                                   (font-lock-syntactic-face-function
-                                    . rust-mode-syntactic-face-function)))
+  (setq-local font-lock-defaults
+              '(rust-font-lock-keywords
+                nil nil nil nil
+                (font-lock-syntactic-face-function
+                 . rust-mode-syntactic-face-function)))
 
   ;; Misc
   (setq-local comment-start "// ")
@@ -275,14 +276,16 @@ Use idomenu (imenu with `ido-mode') for best mileage.")
   (setq-local open-paren-in-column-0-is-defun-start nil)
 
   ;; Auto indent on }
-  (setq-local
-   electric-indent-chars (cons ?} (and (boundp 'electric-indent-chars)
-                                       electric-indent-chars)))
+  (setq-local electric-indent-chars
+              (cons ?} (and (boundp 'electric-indent-chars)
+                            electric-indent-chars)))
 
   ;; Allow paragraph fills for comments
   (setq-local comment-start-skip "\\(?://[/!]*\\|/\\*[*!]?\\)[[:space:]]*")
   (setq-local paragraph-start
-              (concat "[[:space:]]*\\(?:" comment-start-skip 
"\\|\\*/?[[:space:]]*\\|\\)$"))
+              (concat "[[:space:]]*\\(?:"
+                      comment-start-skip
+                      "\\|\\*/?[[:space:]]*\\|\\)$"))
   (setq-local paragraph-separate paragraph-start)
   (setq-local normal-auto-fill-function 'rust-do-auto-fill)
   (setq-local fill-paragraph-function 'rust-fill-paragraph)
@@ -296,7 +299,8 @@ Use idomenu (imenu with `ido-mode') for best mileage.")
   (setq-local beginning-of-defun-function 'rust-beginning-of-defun)
   (setq-local end-of-defun-function 'rust-end-of-defun)
   (setq-local parse-sexp-lookup-properties t)
-  (setq-local electric-pair-inhibit-predicate 
'rust-electric-pair-inhibit-predicate-wrap)
+  (setq-local electric-pair-inhibit-predicate
+              'rust-electric-pair-inhibit-predicate-wrap)
   (setq-local electric-pair-skip-self 'rust-electric-pair-skip-self-wrap)
 
   (add-hook 'before-save-hook 'rust-before-save-hook nil t)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]