19 lines
717 B
AutoHotkey
19 lines
717 B
AutoHotkey
; Git bash at Win+Enter
|
|
#Enter::Run, C:\OutilsDev\ConEmu\ConEmu64.exe
|
|
;Run, C:\OutilsDev\git\Git\git-bash.exe --cd="C:\Users\florian_thierry"
|
|
|
|
; To see what key is pressed, you need to run an autoHotKey script and double clic on it in the windows system tray.
|
|
; After, press your key, and next, click on View > Key History. Inside the popup, there will be the key pressed code.
|
|
; The code in the chr function is the html-code of the char, visible at https://unicode-table.com/fr/#00C0
|
|
|
|
; Ctrl+Alt+Shift+ç -> Ç
|
|
^!+SC00A::SendInput % chr(199)
|
|
|
|
; Ctrl+Alt+Shift+é -> É
|
|
^!+SC003::SendInput % chr(201)
|
|
|
|
; Ctrl+Alt+Shift+è -> È
|
|
^!+SC008::SendInput % chr(200)
|
|
|
|
; Ctrl+Alt+Shift+à -> À
|
|
^!+SC00B::SendInput % chr(192) |