Page 2 of 2

Re: Seer - A powerful Windows quick look tool

Posted: 02 Feb 2024 15:54
by MBaas
Humm...here we go again..;)

I can't remember why I did not continue with Seer last yr, but I'm ready to give it another shot.

My config is set to skip single spaces, yet <SPACE> does not trigger seer. (Workf fine in general fileboxes)

@highend does it work for you of the box? (And what's the idea of experimenting with AHK - what could it help?)

Re: Seer - A powerful Windows quick look tool

Posted: 02 Feb 2024 19:29
by highend
For me it works even in a fresh XY instance (space to show, space to hide the Seer window).

I have a small ahk tool running (with all tweaks to everything that I need), the only part of it that has something to do with Seer is: Hide it's window with {escape}

Code: Select all

; Close Seer window without having focus
#IfWinExist, ahk_class SeerWindowClass
Escape::
    WinHide, ahk_class SeerWindowClass
return
#IfWinExist

Re: Seer - A powerful Windows quick look tool

Posted: 04 Feb 2024 12:43
by MBaas
weird - now it works fine. Seems to be only some context / interaction where it doesn't.

Thanks for sharing that ahk idea :tup: