summaryrefslogtreecommitdiff
path: root/modules/music-config.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-11-24 05:54:37 -0800
committerCraig Jennings <c@cjennings.net>2025-11-24 05:54:37 -0800
commitc0066af134cb0ffb21889b455963c6917fd690e7 (patch)
tree234df34ee4405028e2a95bb5312ef8ffb776be8f /modules/music-config.el
parent42a649d38043dfe5aee15e3fc2d6dcce4483cd40 (diff)
feat(dwim-shell): fix M-D menu binding and enhance audio extraction
- Fix dwim-shell-commands-menu keybinding in dirvish/dired - Remove :after (dired dirvish) which prevented package loading - Add :demand t to load package immediately at startup - Move keybindings inside :config block after menu function definition - M-D now works immediately in dirvish without manual trigger - Enhance extract-audio-from-video function - Fix :extensions parameter (was regex string, now proper list) - Change from copy to AAC re-encoding for codec compatibility - Add interactive bitrate selection (64k/96k/128k/192k) - Fixes Opus codec compatibility issues with M4A containers - Remove conflicting keybindings - Remove music-config p binding in dirvish (was overriding path copy) - Clean up extraneous requires/hooks from troubleshooting - Add TODO for dwim-shell-command status dashboard [#D priority] 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'modules/music-config.el')
-rw-r--r--modules/music-config.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/music-config.el b/modules/music-config.el
index 0994bf82..f60ff36a 100644
--- a/modules/music-config.el
+++ b/modules/music-config.el
@@ -407,9 +407,7 @@ Dirs added recursively."
((file-directory-p file) (cj/music-add-directory-recursive file))
((cj/music--valid-file-p file) (emms-add-file file))
(t (message "Skipping non-music file: %s" file))))
- (message "Added %d item(s) to playlist" (length files))))
-
- (keymap-set dirvish-mode-map "p" #'cj/music-add-dired-selection))
+ (message "Added %d item(s) to playlist" (length files)))))
;;; EMMS setup and keybindings