forked from idf/EmacsEverywhere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EmacsEverywhere.ahk
516 lines (459 loc) · 8.12 KB
/
EmacsEverywhere.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
;
; AutoHotkey Version: 1.x
; Language: English
; Platform: WinNT
; Script Function:
; Provides an Emacs-like keybinding emulation mode that can be toggled on and off using
; the ctrl+` key.
;
;==========================
;Initialization
;==========================
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#InstallKeybdHook
#UseHook
enabledIcon := "EmacsEverywhere_on.ico"
disabledIcon := "EmacsEverywhere_off.ico"
; C-x status
is_pre_x = 0
; C-Space status
is_pre_spc = 0
EmacsModeStat := true
SetEmacsMode(true)
;==========================
;Timer Subroutine
;==========================
KeyX:
SetTimer, KeyX, off
global is_pre_x = 0
return
;==========================
;Emacs mode toggle
;==========================
^`::
SetEmacsMode(!EmacsModeStat)
return
SetEmacsMode(toActive) {
local iconFile := toActive ? enabledIcon : disabledIcon
local state := toActive ? "ON" : "OFF"
EmacsModeStat := toActive
;TrayTip, Emacs Everywhere, Emacs mode is %state%, 10, 1
Menu, Tray, Icon, %iconFile%,
Menu, Tray, Tip, Emacs Everywhere`nEmacs mode is %state%
Send {Shift Up}
}
;==========================
;is target
; WinActive("ahk_class Chrome_WidgetWin_1") ||
;==========================
is_target() {
; force enable
if(WinActive("MATLAB R2014b ahk_class SunAwtFrame")) {
return true
}
; for disable
if (WinActive("ahk_class Console_2_Main") || WinActive("ahk_class PuTTY") || WinActive("ahk_class SunAwtFrame")) {
return false
}
return true
}
IsInEmacsMode() {
global EmacsModeStat
if (EmacsModeStat && is_target()) {
return true
} else {
return false
}
}
;==========================
;Action Functions
;==========================
delete_char() {
Send {Del}
global is_pre_spc = 0
Return
}
delete_backward_char() {
Send {BS}
global is_pre_spc = 0
Return
}
kill_line() {
Send {ShiftDown}{END}{SHIFTUP}
Sleep 10 ;[ms]
Send ^x
;if (RegExMatch(clipboard, "aa") > 0)
;{
; Send ^o
;}
global is_pre_spc = 0
Return
}
open_line() {
Send {END}{Enter}{Up}
global is_pre_spc = 0
Return
}
quit() {
Send {ESC}
global is_pre_spc = 0
Return
}
newline() {
Send {Enter}
global is_pre_spc = 0
Return
}
indent_for_tab_command() {
Send {Tab}
global is_pre_spc = 0
Return
}
newline_and_indent() {
Send {Enter}{Tab}
global is_pre_spc = 0
Return
}
isearch_forward() {
Send ^f
global is_pre_spc = 0
Return
}
isearch_backward() {
Send ^f
global is_pre_spc = 0
Return
}
kill_region() {
Send ^x
global is_pre_spc = 0
Return
}
kill_ring_save() {
Send ^c
global is_pre_spc = 0
Return
}
yank() {
Send ^v
global is_pre_spc = 0
Return
}
undo() {
Send ^z
global is_pre_spc = 0
Return
}
find_file() {
Send ^o
global is_pre_x = 0
Return
}
save_buffer() {
Send, ^s
global is_pre_x = 0
Return
}
kill_emacs() {
Send !{F4}
global is_pre_x = 0
Return
}
move_beginning_of_line() {
global
if is_pre_spc
Send +{HOME}
Else
Send {HOME}
Return
}
move_end_of_line() {
global
if is_pre_spc
Send +{END}
Else
Send {END}
Return
}
previous_line() {
global
if is_pre_spc
Send +{Up}
Else
Send {Up}
Return
}
next_line() {
global
if is_pre_spc
Send +{Down}
Else
Send {Down}
Return
}
backward_char() {
global
if is_pre_spc
Send +{Left}
Else
Send {Left}
Return
}
scroll_up() {
global
if is_pre_spc
Send +{PgUp}
Else
Send {PgUp}
Return
}
scroll_down() {
global
if is_pre_spc
Send +{PgDn}
Else
Send {PgDn}
Return
}
singleLetterFallbackToDefault() {
state := GetKeyState("Capslock", "T")
If(state) {
Send +%A_ThisHotkey% ; + for upper case
}
Else {
Send %A_ThisHotkey%
}
}
;==========================
;Keybindings
;==========================
^x::
If IsInEmacsMode() {
global is_pre_x = 1
SetTimer, KeyX, 1000
}
Else
Send %A_ThisHotkey%
Return
h::
If (IsInEmacsMode() && is_pre_x) {
Send ^a ; select all
global is_pre_x = 0
}
Else
singleLetterFallbackToDefault()
Return
^f::
If IsInEmacsMode() {
If is_pre_x {
Send ^o
global is_pre_x = 0
} Else {
if is_pre_spc
Send +{Right}
Else
Send {Right}
}
} Else
Send %A_ThisHotkey%
Return
^d::
If IsInEmacsMode()
delete_char()
Else
Send %A_ThisHotkey%
Return
^k::
If IsInEmacsMode()
kill_line()
Else
Send %A_ThisHotkey%
Return
^o::
If IsInEmacsMode()
open_line()
Else
Send %A_ThisHotkey%
Return
^g::
If IsInEmacsMode()
quit()
Else
Send %A_ThisHotkey%
Return
^j::
If IsInEmacsMode()
newline_and_indent()
Else
Send %A_ThisHotkey%
Return
^m::
If IsInEmacsMode()
newline()
Else
Send %A_ThisHotkey%
Return
^i::
If IsInEmacsMode()
indent_for_tab_command()
Else
Send %A_ThisHotkey%
Return
^s::
If IsInEmacsMode()
{
If is_pre_x
save_buffer()
Else
isearch_forward()
}
Else
Send %A_ThisHotkey%
Return
^r::
If IsInEmacsMode()
isearch_backward()
Else
Send %A_ThisHotkey%
Return
^w::
If IsInEmacsMode()
kill_region()
Else
Send %A_ThisHotkey%
Return
^y::
If IsInEmacsMode()
yank()
Else
Send %A_ThisHotkey%
Return
^/::
If IsInEmacsMode()
undo()
Else
Send %A_ThisHotkey%
Return
^@::
If IsInEmacsMode()
{
If is_pre_spc
is_pre_spc = 0
Else
is_pre_spc = 1
}
Else
Send %A_ThisHotkey%
Return
^a::
If IsInEmacsMode()
move_beginning_of_line()
Else
Send %A_ThisHotkey%
Return
^e::
If IsInEmacsMode()
move_end_of_line()
Else
Send %A_ThisHotkey%
Return
^p::
If IsInEmacsMode()
previous_line()
Else
Send %A_ThisHotkey%
Return
^n::
If IsInEmacsMode()
next_line()
Else
Send %A_ThisHotkey%
Return
^b::
If IsInEmacsMode()
backward_char()
Else
Send %A_ThisHotkey%
Return
; page scroll are commented out
;^v::
; If IsInEmacsMode()
; scroll_down()
; Else
; Send %A_ThisHotkey%
; Return
;!v::
; If IsInEmacsMode()
; scroll_up()
; Else
; Send %A_ThisHotkey%
; Return
;==========================
;Original
;==========================
SendCommand(emacsKey, translationToWindowsKeystrokes, secondWindowsKeystroke="") {
if (IsInEmacsMode()) {
Send, %translationToWindowsKeystrokes%
if (secondWindowsKeystroke<>"") {
Send, %secondWindowsKeystroke%
}
} else {
Send, %emacsKey% ;passthrough original keystroke
}
return
}
;==========================
;Word Navigation
;==========================
$!p::SendCommand("!p","^{Up}")
$!n::SendCommand("!n","^{Down}")
$!f::SendCommand("!f","^{Right}")
$!b::SendCommand("!b","^{Left}")
;==========================
;Page Navigation
;==========================
$!<::SendCommand("!<","^{Home}")
$!>::SendCommand("!>","^{End}")
;==========================
;Undo
;==========================
$^_::SendCommand("^_","^z")
;==========================
;Delete
;==========================
$!d::SendCommand("!d","^+{Right}","{Delete}")
;==========================
;Disable Win Key but not its combinations
;==========================
~LWin Up:: return
;==========================
;Auto Save
;==========================
;Toggle = 0
;#MaxThreadsPerHotkey 2
;$F8:: ;hit F8 to toggle script on and off.
; Toggle := !Toggle
; While Toggle{
; if (WinActive("ahk_class classFoxitReader")) {
; Send, ^s
; }
; Sleep, 60*1000 ; in ms
; }
;return
;==========================
; Mac Key bindings
;==========================
!w::Send {LCtrl Down}{w}{LCtrl Up} ; emacs kill_ring_save()
!t::Send {LCtrl Down}{t}{LCtrl Up}
!c::Send {LCtrl Down}{c}{LCtrl Up}
!v::Send {LCtrl Down}{v}{LCtrl Up}
!l::Send {LCtrl Down}{l}{LCtrl Up}
!q::Send {LAlt Down}{f4}{LAlt Up}
!a::Send {LCtrl Down}{a}{LCtrl Up}
!s::Send {LCtrl Down}{s}{LCtrl Up}
!z::Send {LCtrl Down}{z}{LCtrl Up}
!r::Send {LCtrl Down}{r}{LCtrl Up}
!LButton::Send {LCtrl Down}{LButton}{LCtrl Up}
!RButton::Send {LCtrl Down}{RButton}{LCtrl Up}