Skip to content

Latest commit

 

History

History
34 lines (30 loc) · 561 Bytes

README.md

File metadata and controls

34 lines (30 loc) · 561 Bytes

Alternative

https://alternativeto.net/software/espanso/

PhraseExpress

Replacing words with a line (including quotation marks!)

:*:WORD1:: {
    if WinActive("ahk_exe NAMEAPPS.exe") {
        Send 'STRING "WORD" STRING MORE'
    }
    else {
        Send "WORD1"
    }
}

Running programs (shift + alt)

!+a:: {
Run "PATH APPS"
}

3 or more hotkeys (ctrl + b + r + o)

Ctrl & o:: {
    if GetKeyState("r")  {
        if GetKeyState("b")  {
        MsgBox "Hotkey activated"
        }
    }
}