[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/org-real 89ea434b6e 161/188: Removed unnecessary :group
From: |
ELPA Syncer |
Subject: |
[elpa] externals/org-real 89ea434b6e 161/188: Removed unnecessary :group, updated faces |
Date: |
Sun, 5 May 2024 22:56:06 -0400 (EDT) |
branch: externals/org-real
commit 89ea434b6e96c4222384e4b45cebc1650610f4d6
Author: Amy Grinn <grinn.amy@gmail.com>
Commit: Amy Grinn <grinn.amy@gmail.com>
Removed unnecessary :group, updated faces
---
org-real.el | 92 ++++++++++++++++++++-----------------------------------------
1 file changed, 30 insertions(+), 62 deletions(-)
diff --git a/org-real.el b/org-real.el
index a9f37f5a32..9fb441747a 100644
--- a/org-real.el
+++ b/org-real.el
@@ -64,97 +64,66 @@
(defcustom org-real-margin-x 2
"Horizontal margin to be used when displaying boxes."
- :type 'number
- :group 'org-real)
+ :type 'number)
(defcustom org-real-margin-y 1
"Vertical margin to be used when displaying boxes."
- :type 'number
- :group 'org-real)
+ :type 'number)
(defcustom org-real-padding-x 2
"Horizontal padding to be used when displaying boxes."
- :type 'number
- :group 'org-real)
+ :type 'number)
(defcustom org-real-padding-y 1
"Vertical padding to be used when displaying boxes."
- :type 'number
- :group 'org-real)
+ :type 'number)
(defcustom org-real-include-context t
"Whether to show context when opening a real link."
- :type 'boolean
- :group 'org-real)
+ :type 'boolean)
(defcustom org-real-flex-width 80
"When merging links, try to keep width below this."
- :type 'number
- :group 'org-real)
+ :type 'number)
(defcustom org-real-default-visibility 2
"Default level to display boxes."
- :type 'number
- :group 'org-real)
+ :type 'number)
(defcustom org-real-tooltips t
"Show tooltips in an org real diagram."
- :type 'boolean
- :group 'org-real)
+ :type 'boolean)
(defcustom org-real-tooltip-timeout 0.5
"Idle time before showing tooltip in org real diagram."
- :type 'number
- :group 'org-real)
+ :type 'number)
(defcustom org-real-tooltip-max-width 30
"Maximum width of all tooltips."
- :type 'number
- :group 'org-real)
+ :type 'number)
;;;; Faces
(defface org-real-default nil
- "Default face used in Boxy mode."
- :group 'boxy)
-
-(defface org-real-primary nil
- "Face for highlighting the name of a box."
- :group 'boxy)
-
-(face-spec-set
- 'org-real-primary
- '((((background dark)) (:foreground "turquoise"))
- (t (:foreground "dark cyan")))
- 'face-defface-spec)
-
-(defface org-real-selected nil
- "Face for the current box border under cursor."
- :group 'boxy)
-
-(face-spec-set
- 'org-real-selected
- '((t :foreground "light slate blue"))
- 'face-defface-spec)
-
-(defface org-real-rel nil
- "Face for the box which is related to the box under the cursor."
- :group 'boxy)
-
-(face-spec-set
- 'org-real-rel
- '((t :foreground "hot pink"))
- 'face-defface-spec)
-
-(defface org-real-tooltip nil
- "Face for tooltips in a boxy diagram."
- :group 'boxy)
-
-(face-spec-set
- 'org-real-tooltip
- '((((background dark)) (:background "gray30" :foreground "gray"))
- (t (:background "gainsboro" :foreground "dim gray")))
- 'face-defface-spec)
+ "Default face used in Boxy mode.")
+
+(defface org-real-primary
+ '((((background dark)) (:foreground "turquoise"))
+ (t (:foreground "dark cyan")))
+ "Face for highlighting the name of a box.")
+
+(defface org-real-selected
+ '((t :foreground "light slate blue"))
+ "Face for the current box border under cursor.")
+
+(defface org-real-rel
+ '((t :foreground "hot pink"))
+ "Face for the box which is related to the box under the cursor.")
+
+(defface org-real-tooltip
+ '((((background dark)) (:background "gray30" :foreground "gray"))
+ (t (:background "gainsboro" :foreground "dim gray")))
+ "Face for tooltips in a boxy diagram.")
;;;; Pretty printing
@@ -264,8 +233,7 @@ diagram."
(org-unbracket-string "<" ">" (match-string 0)))))
(world (boxy-merge
(mapcar
- (lambda (containers)
- (org-real--make-box containers))
+ #'org-real--make-box
(org-real--parse-buffer)))))
(org-real-pp world
:display-buffer-fn 'display-buffer-same-window
- [elpa] externals/org-real 9e6a98aab6 117/188: Jump to location when entering org real mode, (continued)
- [elpa] externals/org-real 9e6a98aab6 117/188: Jump to location when entering org real mode, ELPA Syncer, 2024/05/05
- [elpa] externals/org-real f9b38899b4 131/188: Added help-echo slot for minibuffer messages, ELPA Syncer, 2024/05/05
- [elpa] externals/org-real 47b638ba07 133/188: Linting/elc, ELPA Syncer, 2024/05/05
- [elpa] externals/org-real 655e8a7613 136/188: Bump version, ELPA Syncer, 2024/05/05
- [elpa] externals/org-real 69bfbae1cd 140/188: Color theme update, ELPA Syncer, 2024/05/05
- [elpa] externals/org-real e94d133e8a 144/188: Linting, ELPA Syncer, 2024/05/05
- [elpa] externals/org-real e6e9ac4146 154/188: Updated readme, ELPA Syncer, 2024/05/05
- [elpa] externals/org-real c65ece93df 155/188: Added elpaignore, ELPA Syncer, 2024/05/05
- [elpa] externals/org-real 30c64f9367 158/188: Merge branch 'next' into 'main', ELPA Syncer, 2024/05/05
- [elpa] externals/org-real b7fb8bfb11 159/188: Updated elpaignore, ELPA Syncer, 2024/05/05
- [elpa] externals/org-real 89ea434b6e 161/188: Removed unnecessary :group, updated faces,
ELPA Syncer <=
- [elpa] externals/org-real 28b5e8bb62 162/188: Added autoload for registering "real" type link, ELPA Syncer, 2024/05/05
- [elpa] externals/org-real 79510048aa 163/188: Merge branch 'next' into 'main', ELPA Syncer, 2024/05/05
- [elpa] externals/org-real 82468d2410 165/188: Added org mode 9.3, subr-x dependencies for emacs 26, ELPA Syncer, 2024/05/05
- [elpa] externals/org-real 7c1e6f863b 166/188: Removed reimplementation of org-link-make-string, ELPA Syncer, 2024/05/05
- [elpa] externals/org-real b424643b7d 167/188: Bump version, ELPA Syncer, 2024/05/05
- [elpa] externals/org-real 306e522d26 168/188: Merge branch 'next' into 'main', ELPA Syncer, 2024/05/05
- [elpa] externals/org-real cd882e8973 171/188: Updated deps, ELPA Syncer, 2024/05/05
- [elpa] externals/org-real 390b950d62 174/188: Added post-jump-hook, ELPA Syncer, 2024/05/05
- [elpa] externals/org-real fd9bfb0c43 175/188: Updated eldev install location, ELPA Syncer, 2024/05/05
- [elpa] externals/org-real 02a0278e4e 177/188: Updated dependencies, ELPA Syncer, 2024/05/05