First commit
This commit is contained in:
19
shortcuts.ahk
Normal file
19
shortcuts.ahk
Normal file
@@ -0,0 +1,19 @@
|
||||
; Git bash at Win+Enter
|
||||
#Enter::
|
||||
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)
|
||||
Reference in New Issue
Block a user