This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
truncate(string, at, divider=" . . . . ") { | |
if (strLen(string) > at) | |
string := subStr(string, 1, at/2) . divider . subStr(string, -at/2) | |
return string | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
[settings] | |
save_folder = | |
[script folders] | |
folder_1 = | |
folder_2 = | |
[ignore] | |
C:\Users\documents\example script name.ahk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#noEnv | |
; #noTrayIcon | |
#persistent | |
#singleInstance, force | |
onExit, save_clipboard | |
;execute_this ; ex_this( git.io/vFQ1z ) | |
if fileExist(a_scriptDir . "\restart clipboard.txt") | |
{ | |
if (clipboard = "") ; if it hasnt been set to anything else |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
[tag list] | |
bank | |
car | |
insurance | |
receipt | |
tax | |
[settings] | |
recent_total = 11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#noEnv | |
#singleInstance, force | |
return ; end of auto-execute | |
; -------------------------- | |
;# persistent peek | |
#!tab:: | |
if (peeking) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout] | |
"Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,1d,00,3a,00,00,00,00,00 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#noEnv | |
#singleInstance, force | |
sendMode input | |
setTitleMatchMode, 2 | |
; create window groups | |
groupAdd, dynalist, ahk_exe Dynalist.exe ; desktop app | |
groupAdd, dynalist, - Dynalist ahk_exe vivaldi.exe ; browsers | |
groupAdd, dynalist, - Dynalist ahk_exe chrome.exe | |
groupAdd, dynalist, - Dynalist ahk_exe firefox.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<TaskerData sr="" dvi="1" tv="5.1m"> | |
<Profile sr="prof176" ve="2"> | |
<cdate>1525199587422</cdate> | |
<clp>true</clp> | |
<edate>1525368717245</edate> | |
<id>176</id> | |
<mid0>154</mid0> | |
<mid1>188</mid1> | |
<nme>garmin glo connected</nme> | |
<State sr="con0" ve="2"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<TaskerData sr="" dvi="1" tv="5.1m"> | |
<Profile sr="prof199" ve="2"> | |
<cdate>1493412138872</cdate> | |
<edate>1525368772438</edate> | |
<id>199</id> | |
<mid0>187</mid0> | |
<nme>nfc - garmin glo connect</nme> | |
<State sr="con0" ve="2"> | |
<code>992481284</code> | |
<Bundle sr="arg0"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#noEnv | |
#singleInstance, force | |
sendMode input | |
return ; end of auto-execute --------------------------------------------------- | |
!r:: goSub, txt_replace | |
!+r::goSub, use_last_replace |