Cheers marko, was not aware, might get more adventurous now.
I would prefer when a song is playing and I hit ctrl;up that it goes directly to the previous song in the list. What it does is goes to the beginning of the current song. I have to hit ctrl;up fast twice to go up one song. When on a song is in pause mode, ctrl;up or ctrl;down start playing too and maybe my spacebar should control that.
I'm not sure if its possible to do what you want with MC, if you noticed... a shortcut can fire off just one command.
But a 3rd party prog like autohotkey could do it (besides a ton of other things) eg send ctrl;up twice in succession with just one input sequence.
I think one reason may be that mc makes a distinction between pause and stop in the playback engine. Because if I press the stop key then last and previous buttons behave as expected. But because I press stop playing a song will always start from the beginning again.
Is there some param or translate flag force pause to behave as both stop AND pause. Do these param arguments do other things? I don't see definitions for params.
<!-- Next 10003 -->
<Entry Key="Ctrl;Down" Command="10003" Param="0" />
<!-- Last 10004 -->
<Entry Key="Ctrl;Up" Command="10004" Param="0" />
<!-- Play/Pause 10000 -->
<Entry Key="Space" Command="10000" Param="0" />
<!-- Stop 10002 -->
<Entry Key="Enter" Command="10002" Param="0" />
You can find a reference to all MCC commands
here