-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutoHotkey.ahk
More file actions
34 lines (23 loc) · 893 Bytes
/
AutoHotkey.ahk
File metadata and controls
34 lines (23 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#Requires AutoHotkey v2.0
; ========================
; 🌐 Global Hotkeys
; ========================
; Ctrl + C → Ctrl + Insert (복사)
^c::Send('{Ctrl down}{Insert}{Ctrl up}')
; Ctrl + V → Shift + Insert (붙여넣기)
^v::Send('{Shift down}{Insert}{Shift up}')
; Ctrl + Shift + 4 → Win + Shift + S
^+4::Send('#+s')
; ========================
; 💻 IntelliJ 전용 Hotkeys
; ========================
#HotIf WinActive("ahk_exe idea64.exe")
; Ctrl + N → Alt + Insert (Generate 메뉴)
^n::Send('{Alt down}{Insert}{Alt up}')
; IntelliJ 에서만 Ctrl + ; 누르면 Ctrl + Alt + S 입력되게 설정
^,::Send('^!s') ; Ctrl + ; → Ctrl + Alt + S
; IntelliJ에서만 Ctrl + , 누르면 Ctrl + Alt + Shift + S 전송
^;::Send('^+!s') ; Ctrl + , → Ctrl + Shift + Alt + S
; Ctrl + W 누르면 Ctrl + F4 보내기
^w::Send('^{F4}')
#HotIf