From 996bc3ee2fc1ad4bd1809106505cd655bb7a66ea Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Sun, 19 Mar 2023 12:19:08 -0600 Subject: [PATCH] ktxt2 fountain to hollywoo conversions --- projects/ktxt2/package.json | 10 +++++----- projects/ktxt2/src/ktxt2/Main.kiss | 4 +++- .../src/ktxt2/conversions/FountainToHollywoo.kiss} | 0 3 files changed, 8 insertions(+), 6 deletions(-) rename projects/{hollywoo/src/hollywoo/FountainConversions.kiss => ktxt2/src/ktxt2/conversions/FountainToHollywoo.kiss} (100%) diff --git a/projects/ktxt2/package.json b/projects/ktxt2/package.json index f1245ac0..dd80ad75 100644 --- a/projects/ktxt2/package.json +++ b/projects/ktxt2/package.json @@ -9,6 +9,9 @@ "homepage": "", "categories": [], "extensionPack": [], + "dependencies": { + "monaco-editor": "^0.36.1" + }, "publisher": "NQNStudios", "contributes": { "keybindings": [ @@ -45,8 +48,5 @@ }, "version": "0.0.0", "activationEvents": [], - "displayName": "", - "dependencies": { - "monaco-editor": "^0.36.1" - } -} + "displayName": "" +} \ No newline at end of file diff --git a/projects/ktxt2/src/ktxt2/Main.kiss b/projects/ktxt2/src/ktxt2/Main.kiss index fc0d8534..cfed8f55 100644 --- a/projects/ktxt2/src/ktxt2/Main.kiss +++ b/projects/ktxt2/src/ktxt2/Main.kiss @@ -10,7 +10,9 @@ (printThroughInfoMessage) (context.subscriptions.push - (KTxt2EditorProvider.register context)) + (KTxt2EditorProvider.register context)) + + (load "conversions/FountainToHollywoo.kiss") // Add your extension's commands here with (defCommand <...>): (load "Commands.kiss") diff --git a/projects/hollywoo/src/hollywoo/FountainConversions.kiss b/projects/ktxt2/src/ktxt2/conversions/FountainToHollywoo.kiss similarity index 100% rename from projects/hollywoo/src/hollywoo/FountainConversions.kiss rename to projects/ktxt2/src/ktxt2/conversions/FountainToHollywoo.kiss