diff options
author | Thanos Apollo <[email protected]> | 2024-01-18 19:30:05 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-01-18 19:30:32 +0200 |
commit | 0f032f864d5cb9a3bd31e87a086f4a3dcd239bf6 (patch) | |
tree | 0bbef0d85285cd4292460f3a81ee5f7b3803aa89 | |
parent | 6599aff081957c1d26b9bee543c72d5789b86812 (diff) |
yeetube-mode-map: Add yeetube-view-thumbnail
-rw-r--r-- | yeetube.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -444,6 +444,7 @@ FIELDS-FACE-PAIRS is a list of fields and faces." "s" #'yeetube-save-video "P" #'yeetube-play-saved-video "r" #'yeetube-replay + "t" #'yeetube-view-thumbnail "q" #'quit-window) (define-derived-mode yeetube-mode tabulated-list-mode "Yeetube" @@ -463,8 +464,7 @@ FIELDS-FACE-PAIRS is a list of fields and faces." tabulated-list-sort-key (cons "Title" nil)) (display-line-numbers-mode 0) (tabulated-list-init-header) - (tabulated-list-print) - (hl-line-mode)) + (tabulated-list-print)) (provide 'yeetube) ;;; yeetube.el ends here |