Skip to content

Commit 3227aca

Browse files
committed
getting local build to work
1 parent d82d334 commit 3227aca

13 files changed

+21
-21
lines changed

TagCompanion.ahk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
#Requires Autohotkey v2
33
#SingleInstance Force
44

5-
#Include "include\GuiReSizer.ahk"
6-
#Include "include\LightJson.ahk"
7-
#Include "lib\AppContext.ahk"
8-
#Include "lib\clipboard.ahk"
5+
#Include <GuiReSizer>
6+
#Include <LightJson>
7+
#Include <AppContext>
8+
#Include <Clipboard>
99

1010
guiCommon := {
1111
margin: 8

lib/AppContext.ahk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#Include "..\include\GuiReSizer.ahk"
1+
#Include <GuiReSizer>
22

3-
#Include "HotstringManager.ahk"
4-
#Include "MenuManager.ahk"
5-
#Include "SettingsManager.ahk"
3+
#Include <HotstringManager>
4+
#Include <MenuManager>
5+
#Include <SettingsManager>
66

77

88
class AppContext {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#Requires AutoHotkey v2.0
22
#SingleInstance Force
33
#Warn all, off
4-
#Include GuiResizer.ahk
4+
#Include <GuiResizer>
55

66
class AutoResizer extends GuiReSizer
77
{

lib/CSV.ahk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Include "Strings.ahk"
1+
#Include <Strings>
22

33
; Parse a CSV string into an array.
44
CSVParse(str) {

lib/Clipboard.ahk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Include "strings.ahk"
1+
#Include <Strings>
22

33
ClipboardIncrement(IncrementMode, offset) {
44
; Save the entire clipboard contents.

lib/HotstringManager.ahk

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#Include "..\include\GuiReSizer.ahk"
2-
#Include "..\include\LightJson.ahk"
1+
#Include <GuiReSizer>
2+
#Include <LightJson>
33

4-
#Include "Strings.ahk"
5-
#Include "NamedValues.ahk"
6-
#Include "RegExHotstringHook.ahk"
4+
#Include <Strings>
5+
#Include <NamedValues>
6+
#Include <RegExHotstringHook>
77

88
class HotstringManager {
99

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)