aboutsummaryrefslogtreecommitdiff
path: root/emms-tag-editor.el
diff options
context:
space:
mode:
authorYoni Rabkin <yoni@rabkins.net>2021-04-29 12:53:15 -0400
committerYoni Rabkin <yoni@rabkins.net>2021-04-29 12:53:15 -0400
commit3a8ba30d1fb8d94ab3c63aa678a0059cc8b48b2f (patch)
treebe516b15779a7e0e2f1a9892c404bfad3399454d /emms-tag-editor.el
parent02915f7aa24d27d717ff4821a58f791cffcc174c (diff)
*.el: Minor improvements and simplifications
* emms-playlist-limit.el (emms-playlist-limit--limit-playlist): Simplify. * emms-playing-time.el (emms-playing-time-display): Simplify. * emms-player-mpv.el (emms-player-mpv-ipc-proc) (emms-player-mpv-ipc-connect-command, emms-player-mpv-ipc-id) (emms-player-mpv-ipc-stop-command) (emms-player-mpv-event-connect-hook) (emms-player-mpv-ipc-conn-emacs-26.1-workaround): Fit docstrings with 80 columns. * emms-player-mpd.el (emms-player-mpd-ensure-process): Simplify `if` with identical branches. * emms-browser.el (emms-browser-run-mode-hooks): Simplify and move it out of `eval-and-compile`. (emms-browser-sort-cadr, emms-browser-sort-car): Add `debug` spec. patch by Stefan Monnier
Diffstat (limited to 'emms-tag-editor.el')
-rw-r--r--emms-tag-editor.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/emms-tag-editor.el b/emms-tag-editor.el
index d0028d2..c00a4fb 100644
--- a/emms-tag-editor.el
+++ b/emms-tag-editor.el
@@ -295,6 +295,7 @@ This string is suitable for inserting into the tags buffer."
(defvar emms-tag-editor-mode-map
(let ((map (make-sparse-keymap)))
+ ;; FIXME: Bind to "\t" rather than [tab] so it works in ttys as well.
(define-key map [tab] #'emms-tag-editor-next-field)
(define-key map [backtab] #'emms-tag-editor-prev-field)
(define-key map "\C-c\C-n" #'emms-tag-editor-next-track)