Keypirinha / Keypirinha

A fast keystroke launcher for Windows
http://keypirinha.com
1.05k stars 21 forks source link

Hotkey / shortcut to open Keypirinha directly in plugins mode. #446

Closed baseband5 closed 4 years ago

baseband5 commented 4 years ago

Hi. What I am trying to achieve is to invoke Keypirinha directly in plugins part of catalog. Most likely I am trying to replace alt tab with TaskSwitcher plugin For now I have little buggy workaround:

taskswitcher.ini

[main]
item_label = Tab

autohotkey script

SetTitleMatchMode RegEx
Lalt & Tab::
If WinActive("ahk_class keypirinha_wndcls_run") != 0x0 {
        SendInput {ESC}{ESC}{ESC}
        return
}
SendInput, !{Space}
If WinActive("ahk_class keypirinha_wndcls_run") != 0x0 {
        SendInput {Raw}Tab
        SendInput {Tab}
}

Return

Is this any standardized way to achieve this?

polyvertex commented 4 years ago

There is no way to configure this in Keypirinha so yes, an AutoHotkey script is your best bet. Thanks for sharing your snippet

PremPatel8 commented 8 months ago

For anyone who's mostly interested in the ability described here, Microsoft PowerToys Run has this functionality called Window Walker that can achieve this just by typing '<' symbol at the beginning.

Jackiexiao commented 7 months ago

For anyone who's mostly interested in the ability described here, Microsoft PowerToys Run has this functionality called Window Walker that can achieve this just by typing '<' symbol at the beginning.

thx!!!!!! that's helpful!