diff options
author | Boruch Baum <[email protected]> | 2024-02-04 17:15:22 -0500 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-02-10 10:48:57 +0200 |
commit | ff29ac9d862daffc6eb1ac3e7cebc4a9fb541b57 (patch) | |
tree | 8544d8576bffe3270b415d1296be4d015ea1d08c | |
parent | 1d86459ac1fa7900cda699db539cbf537d718166 (diff) |
feat: reduce duration column width
-rw-r--r-- | yeetube.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -485,7 +485,7 @@ FIELDS-FACE-PAIRS is a list of fields and faces." (define-derived-mode yeetube-mode tabulated-list-mode "Yeetube" "Yeetube mode." :keymap yeetube-mode-map - (setf tabulated-list-format [("Title" 60 t) ("Views" 12 t) ("Duration" 12 t) ("Channel" 12 t)] + (setf tabulated-list-format [("Title" 60 t) ("Views" 12 t) ("Duration" 9 t) ("Channel" 12 t)] tabulated-list-entries (cl-map 'list (lambda (content) |