-
Notifications
You must be signed in to change notification settings - Fork 72
/
plugins.ahk
68 lines (57 loc) · 1.58 KB
/
plugins.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
/*
Plugins for CL3
To add a plugin:
Make a file named "MyPlugins.ahk" with the following content below
(between the lines)
PluginScriptFunction.ahk: function you made that modifies
the content of the clipboard before it will be pasted.
MyPlugins.ahk will not be part of CL3 so will never be overwritten
by updates.
To add each plugins:
1. Create a script and place it in the plugins\ directory
2. edit plugins\Myplugins.ahk and add the name of script TWICE
in the "join list" at the top and in the #include section below it as well.
The order in which they are listed is used for the menu entries.
; -----------------------------
MyPluginlistFunc=
(join|
PluginScriptFunction.ahk
)
#include %A_ScriptDir%\plugins\PluginScriptFunction.ahk
; etc
; -----------------------------
*/
pluginlistFunc=
(join|
AutoReplace.ahk
ClipChain.ahk
Compact.ahk
DumpHistory.ahk
Search.ahk
Slots.ahk
Fifo.ahk
)
pluginlistClip=
(join|
Lower.ahk
Title.ahk
Send.ahk
LowerReplaceSpace.ahk
Upper.ahk
)
Gosub, SlotsInit
Gosub, ClipChainInit
Gosub, FifoInit
#include *i %A_ScriptDir%\plugins\MyPlugins.ahk
#include %A_ScriptDir%\plugins\LowerReplaceSpace.ahk
#include %A_ScriptDir%\plugins\Lower.ahk
#include %A_ScriptDir%\plugins\Title.ahk
#include %A_ScriptDir%\plugins\Upper.ahk
#include %A_ScriptDir%\plugins\Send.ahk
#include %A_ScriptDir%\plugins\AutoReplace.ahk
#include %A_ScriptDir%\plugins\Slots.ahk
#include %A_ScriptDir%\plugins\Search.ahk
#include %A_ScriptDir%\plugins\DumpHistory.ahk
#include %A_ScriptDir%\plugins\ClipChain.ahk
#include %A_ScriptDir%\plugins\Compact.ahk
#include %A_ScriptDir%\plugins\Fifo.ahk