diff options
author | Thanos Apollo <[email protected]> | 2023-07-05 09:48:15 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-07-05 18:14:00 +0300 |
commit | 7b153d8fc595e28a1c7081d6310789156ccdbcc8 (patch) | |
tree | 2c3c8c19412572c3efec52d3acca0b58c10676f5 | |
parent | eaf4f19f1952bb3684741c3bf488c0b4c2dfbcd5 (diff) |
Remove *bold* for info variables
-rw-r--r-- | yeetube.el | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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)))) |