diff options
author | Thanos Apollo <[email protected]> | 2023-10-02 16:37:45 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-10-02 16:37:45 +0300 |
commit | fe10715c61e08754122825085d8a3bbcb59bf1c0 (patch) | |
tree | 93c33d15492e550dffbdc6a1a28b9e870422ec86 | |
parent | aa99ff3caf1d49f2e6345fdf2b16ceac37d7b752 (diff) |
Remove deprecated variables
Removing
- yeetube-results-prefix
- yeetube-display-info-keys
- yeetube-display-view-count
these variables where used previously when the results would have been
displayed in an org-mode buffer.
-rw-r--r-- | yeetube.el | 17 |
1 files changed, 0 insertions, 17 deletions
@@ -45,12 +45,6 @@ :safe #'numberp :group 'yeetube) -(defcustom yeetube-results-prefix "+" - "Define prefix to display results with." - :type 'string - :safe #'stringp - :group 'yeetube) - (defcustom yeetube-download-audio-format nil "Select download video as audio FORMAT. If nil download output will be the default format. @@ -61,12 +55,6 @@ Example Usage: :safe #'stringp :group 'yeetube) -(defcustom yeetube-display-info-keys t - "Display default keybindings." - :type 'boolean - :safe #'booleanp - :group 'yeetube) - (defcustom yeetube-player #'yeetube-mpv "Select media player function." :type 'function @@ -79,11 +67,6 @@ Example Usage: :safe #'stringp :group 'yeetube) -(defcustom yeetube-display-view-count t - "Show video view count." - :type 'boolean - :safe #'booleanp - :group 'yeetube) (defvar yeetube-yt-dlp (executable-find "yt-dlp")) |