Skip to content

Commit

Permalink
Fix duplicate keybinding in the MPD keymap
Browse files Browse the repository at this point in the history
"S" was first bound to MPD-CURRENT-SONG and then to *MPD-SEARCH-MAP*. As
a result only *MPD-SEARCH-MAP* was accessible. The key "i" was still
free, so we bind that to MPD-CURRENT-SONG instead.

Fixes #46
  • Loading branch information
jorams committed Jan 25, 2016
1 parent b9bf653 commit e905d28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minor-mode/mpd/mpd.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ Passed an argument of zero and if crossfade is on, toggles crossfade off."
(kbd "r") "mpd-toggle-repeat"
(kbd "f") "mpd-toggle-xfade"
(kbd "F") "mpd-set-xfade"
(kbd "S") "mpd-current-song"
(kbd "i") "mpd-current-song"
(kbd "p") "mpd-play"
(kbd "q") "mpd-browse-playlist"
(kbd "o") "mpd-stop"
Expand Down

0 comments on commit e905d28

Please sign in to comment.