summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-07-05 09:48:15 +0300
committerThanos Apollo <[email protected]>2023-07-05 18:14:00 +0300
commit7b153d8fc595e28a1c7081d6310789156ccdbcc8 (patch)
tree2c3c8c19412572c3efec52d3acca0b58c10676f5
parenteaf4f19f1952bb3684741c3bf488c0b4c2dfbcd5 (diff)
Remove *bold* for info variables
-rw-r--r--yeetube.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/yeetube.el b/yeetube.el
index 6127872..0213665 100644
--- a/yeetube.el
+++ b/yeetube.el
@@ -261,9 +261,9 @@ then run this command interactively."
"Insert default keybindings at *Yeetube Search* buffer."
(insert
"\n\n** Info"
- (format "\nDownload Directory: *%s*" yeetube-download-directory)
- (format "\nDownload as audio format: *%s*" yeetube-download-audio-format)
- (format "\nYeetube Player: *%s*" yeetube-player))
+ (format "\nDownload Directory: %s" yeetube-download-directory)
+ (format "\nDownload as audio format: %s" yeetube-download-audio-format)
+ (format "\nYeetube Player: %s" yeetube-player))
(when yeetube-display-info-keys
(insert
"\n\n*** Keybindings"
@@ -313,7 +313,7 @@ OPERATION & WHERE are required to work with 'add-variable-watcher."
(beginning-of-visual-line)
(kill-region (point) (line-end-position))
(insert
- (format "%s *%s*" to-change new-value))
+ (format "%s %s" to-change new-value))
(setq-local buffer-read-only t)
(switch-to-buffer buffer-cur))
(goto-char (mark))))