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

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

[nongnu] elpa/hl-block-mode 497b0ac639 48/64: Cleanup: re-order custom s


From: ELPA Syncer
Subject: [nongnu] elpa/hl-block-mode 497b0ac639 48/64: Cleanup: re-order custom settings
Date: Thu, 7 Jul 2022 12:00:08 -0400 (EDT)

branch: elpa/hl-block-mode
commit 497b0ac6398be8de72395341573059113780c1ae
Author: Campbell Barton <ideasman42@gmail.com>
Commit: Campbell Barton <ideasman42@gmail.com>

    Cleanup: re-order custom settings
---
 hl-block-mode.el | 22 ++++++++++++----------
 1 file changed, 12 insertions(+), 10 deletions(-)

diff --git a/hl-block-mode.el b/hl-block-mode.el
index 5815e993c2..d6edeea26b 100644
--- a/hl-block-mode.el
+++ b/hl-block-mode.el
@@ -52,16 +52,6 @@ Set to nil to use all brackets."
   :group 'hl-block-mode
   :type 'float)
 
-(defcustom hl-block-color-tint "#040404"
-  "Color to add/subtract from the background each scope step."
-  :group 'hl-block-mode
-  :type 'color)
-
-(defcustom hl-block-bracket-face '((t (:inverse-video t)))
-  "Face used when `hl-block-style' is set to `bracket'."
-  :type 'face
-  :group 'widget-faces)
-
 (defcustom hl-block-multi-line nil
   "Skip highlighting nested blocks on the same line.
 
@@ -83,6 +73,18 @@ Useful for languages that use S-expressions to avoid overly 
nested highlighting.
     (symbol :tag "Tint the background at each level `hl-block-color-tint'." 
color-tint)
     (symbol :tag "Highlight surrounding brackets using 
`hl-block-bracket-face'." bracket)))
 
+;; For `color-tint' draw style.
+(defcustom hl-block-color-tint "#040404"
+  "Color to add/subtract from the background each scope step."
+  :group 'hl-block-mode
+  :type 'color)
+
+;; For `bracket' draw style.
+(defcustom hl-block-bracket-face '((t (:inverse-video t)))
+  "Face used when `hl-block-style' is set to `bracket'."
+  :type 'face
+  :group 'widget-faces)
+
 (defcustom hl-block-mode-lighter ""
   "Lighter for option `hl-block-mode'."
   :group 'hl-block-mode



reply via email to

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