diff options
| author | Craig Jennings <c@cjennings.net> | 2025-11-24 05:54:37 -0800 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-11-24 05:54:37 -0800 |
| commit | bb88002e9df5bdc1e6cfadd08723a737284dceaa (patch) | |
| tree | 2aa19b5670fc7672fd593e2c93fa9e05802ad4bd /modules/music-config.el | |
| parent | 8bff68cdad266a862abb57c1187cdf213d1f0d31 (diff) | |
| download | dotemacs-bb88002e9df5bdc1e6cfadd08723a737284dceaa.tar.gz dotemacs-bb88002e9df5bdc1e6cfadd08723a737284dceaa.zip | |
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]
Diffstat (limited to 'modules/music-config.el')
| -rw-r--r-- | modules/music-config.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/music-config.el b/modules/music-config.el index 0994bf826..f60ff36a7 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 |
