-
Notifications
You must be signed in to change notification settings - Fork 37
/
lspcieee.ahk
81 lines (56 loc) · 1.55 KB
/
lspcieee.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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; AHK版本: 1.1.23.01
; 语言: 中文
; 作者: lspcieee <lspcieee@gmail.com>
; 网站: http://www.lspcieee.com/
; 脚本功能: 个性化需求
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Win---># ; Shift--->+ ; Ctrl--->^ ; Alt--->!
; ::/d::此格式加回车执行
#SingleInstance force
;SendMode Input
;脚本重启
!^r::
Reload ; Reload the script by Alt+Ctrl+R.
TrayTip,AHK, 脚本已重启
Return
;有道词典快捷键打开(有道词典已经设置为关闭窗口自动关闭程序,节省性能)
;!l::
;Run,C:\Users\lspcieee\AppData\Local\Youdao\Dict\Application\YodaoDict.exe
;Return
:*::d:: ; 当前日期
FormatTime, CurrentDateTime,, yyyy-MM-dd
sendbyclip(CurrentDateTime)
return
:*::t:: ; 当前日期
FormatTime, CurrentDateTime,, HH:mm
sendbyclip(CurrentDateTime)
return
:Z*?:`:`=:: ; 计算表达式
ClipboardOld = %ClipboardAll%
send +{Home}
send ^c
ClipWait
Q:=Clipboard
if fileexist("Temp.ahk")
FileDelete Temp.ahk
FileAppend send {End}`=`n,Temp.ahk
FileAppend send `% %Q% ,Temp.ahk
run Temp.ahk
Clipboard = %ClipboardOld% ; Restore previous contents of clipboard.
return
;mlo点击支持中文链接
#IfWinActive, ahk_class TfrmMyLifeMain
!o::
;MouseGetPos, OutputVarX, OutputVarY, OutputVarWin, OutputVarControl
;MouseClick, left, OutputVarX, OutputVarY,5
Send,^a
Send,^c
ClipWait
StringReplace, Clipboard, Clipboard, file: ,, All
StringReplace, Clipboard, Clipboard, `r`n ,, All
;MsgBox,%clipboard%
Run,%clipboard%
Return
#IfWinActive
=