-
Notifications
You must be signed in to change notification settings - Fork 0
/
DefaultsExtended.ahk
74 lines (65 loc) · 2.31 KB
/
DefaultsExtended.ahk
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
; █▀▄ █▀▀ █▀▀ ▄▀█ █░█ █░░ ▀█▀ █▀ █▀▀ ▀▄▀ ▀█▀ █▀▀ █▄░█ █▀▄ █▀▀ █▀▄
; █▄▀ ██▄ █▀░ █▀█ █▄█ █▄▄ ░█░ ▄█ ██▄ █░█ ░█░ ██▄ █░▀█ █▄▀ ██▄ █▄▀
; 0=============================================================================================0
; EDITING KEYS:
; ^ = ctrl
; ! = alt
; + = shift
; 0=============================================================================================0
; Move to start/end of line
; Ctrl & Alt & Right::
^!Left::
Send {Home}
return
^!Right::
Send {End}
return
; 0==============================================================================================================0
; Move to start/end of file
; Ctrl Alt Up
^!Up::
Send {Ctrl Down}{Home}{Ctrl Up}
return
; Ctrl Alt Down
^!Down::
Send {Ctrl Down}{End}{Ctrl Up}
return
; 0==============================================================================================================0
; Select line
^+l::
Send {Home}{Shift Down}{End}{Shift Up}
return
^!+Left::
Send {Shift Down}{Home}{Shift Up}
return
^!+Right::
Send {Shift Down}{End}{Shift Up}
return
; 0==============================================================================================================0
; Select from location to start/end
^!+Up::
Send {Shift Down}{Ctrl Down}{Home}{Ctrl Up}{Shift Up}
return
^!+Down::
Send {Shift Down}{Ctrl Down}{End}{Ctrl Up}{Shift Up}
return
; 0==============================================================================================================0
; Delete line
; Ctrl Shift D
^+d::
SetKeyDelay -1
Send {Shift Down}{Home}{Shift Up}{Space}{Home}{Shift Down}{End}{Shift Up}{Del}{Del}
return
; 0==============================================================================================================0
; OTHER:
; Uncomment the appropriate lines to run calculator or the terminal you would like.
; Calculator
; !c::
; Run "calc"
; return
; Terminal
; Adding explorer.exe makes it so it does not run as admin if needed.
; Run, explorer.exe "C:\Program Files\WezTerm\wezterm-gui.exe"
; ^!t::
; Run "pwsh"
; return