Usability problem

It's been already said that you can't finish search by nothing else but esc or enter, but now that we have queue (great stuff!) this is even more imporant.

I have a rather long playlist, and want to add something to queue. So i search for it and ... ? I'm hosed. I can either discard the search or play it now!

Also - it would be great if we could search through help screen.

Yes, searching through the help screen would be great!

+1

I've changed one line to have the search target be selected instead of being played automatically.

I think this would be a good option to have in the next moc release.


Index: interface.c
===================================================================
--- interface.c (revision 2252)
+++ interface.c (working copy)
@@ -2398,7 +2398,7 @@
else if (file_type(file) == F_PLAYLIST)
go_to_playlist (file, 0);
else
- play_it (file);
+ iface_select_file (file);
}

free (text);