Page 1 of 1

Keyboard shortcuts when in quick search dialog

Posted: 2007-06-27, 18:49 UTC
by roentgen
As a heavy user of the quick search dialog this is a very dear wish for me :wink:

What I'd like to have is the possibility to access the main menu when inside the quick search dialog, i.e. with Alt+F. Also, Del key isn't currently supported.

Posted: 2007-06-27, 19:53 UTC
by sqa_wizard
Also, Del key isn't currently supported
DEL key works fine for me (deletes character on the right of the cursor or whole selection)

Please, tell me what do you want to do with the content of the quick search dialog, using the main menu functions ?

Posted: 2007-06-28, 05:23 UTC
by roentgen
2sqa_wizard
You go with the mouse and edit what you typed? Wicked...

Posted: 2007-06-29, 15:42 UTC
by Yuta
I think that pressing CTRL, ALT or SHIFT should leave the quick search dialog.
But pressing LEFT/RIGHT ARROW should move the cursor as expected, not send you to the command line. We have SHIFT+RIGHT ARROW for that.

Posted: 2009-07-21, 20:57 UTC
by StatusQuo
Support++

Simple AHK workaround for menu access via Alt key (press and release Alt):

Code: Select all

#IfWinActive, QUICKSEARCH ahk_class TQUICKSEARCH
	Alt::
		Send, {ESC}{F10}
		Return

I miss editing functions in the search dialog, too (cursor left/right, maybe Ctrl+left/right and marking/overwriting characters with Shift+left/right).
Unfortunately I didn't find a way to set the cursor position in the quicksearch field yet to implement at least basic cursor navigation.

Posted: 2009-07-21, 22:50 UTC
by HolgerK
StatusQuo wrote:I miss editing functions in the search dialog, too (cursor left/right, maybe Ctrl+left/right and marking/overwriting characters with Shift+left/right).
Works fine here.
Are you using the brief view?
History TC7.50pb6 wrote:16.06.09 Added: Quick search/filter dialog: Handle left/right arrow buttons internally, except in brief view where they are needed to go through columns
Regards
Holger

Posted: 2009-07-22, 21:37 UTC
by StatusQuo
2HolgerK
Indeed, cursor navigation is meanwhile working, sorry - at least to move the cursor. :) But overwriting still doesn't work: having the files
HISTORY.TXT
HHISTORY.TXT
HELP.TXT
and having "His" in Quicksearch I can mark the last two characters "is", but can not overwrite the marked part by typing "e".
Typing "h" instead shows why: instead of overwriting the selected part the letter gets inserted at the start of the selection (btw, no matter if the cursor is at beginning or end of it).

Something for the bugs section?

Posted: 2009-07-22, 21:45 UTC
by Samuel
Support from me.
But AFAIR was already suggested and Christian was against it.

Posted: 2009-08-13, 21:53 UTC
by Samuel
Its possible now to overtype in quicksearch.
Thanks Christian.

Posted: 2009-08-14, 19:24 UTC
by StatusQuo
Overtyping now works fine here, too (TC 7.5 RC1), thanks.