From 5c26c098150dd7a8b584d2428c8e3c206344a15b Mon Sep 17 00:00:00 2001 From: Tomasz Polgrabia Date: Mon, 27 Jan 2025 00:58:20 +0100 Subject: [PATCH] Some basic emeditor scripts for formatting json and running builds. --- scripts/emeditor/format_json.js | 16 ++++++++++++++++ scripts/emeditor/shell.js | 17 +++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 scripts/emeditor/format_json.js create mode 100644 scripts/emeditor/shell.js diff --git a/scripts/emeditor/format_json.js b/scripts/emeditor/format_json.js new file mode 100644 index 0000000..9b2b20d --- /dev/null +++ b/scripts/emeditor/format_json.js @@ -0,0 +1,16 @@ +var q; +if (document.selection.text) { + try { + q = JSON.parse(document.selection.Text); + document.selection.text = JSON.stringify(q, undefined, 2); + } catch (err) { + Window.OutputBar.writeln("Selected text couldnt have been formatted as json. Most likely it's not json: " + + err.message + " " + err.fileName + ":" + err.lineNumber); + Window.OutputBar.Visible = true; + } +} else { + // alert('There is no selection'); + // Window.prompt('There is no selection provided'); + Window.OutputBar.writeln('There is no selection provided. Please select text to formt it as json'); + Window.OutputBar.Visible = true; +} \ No newline at end of file diff --git a/scripts/emeditor/shell.js b/scripts/emeditor/shell.js new file mode 100644 index 0000000..96f9ff5 --- /dev/null +++ b/scripts/emeditor/shell.js @@ -0,0 +1,17 @@ +function readAll(filename) { + var fso = new ActiveXObject("Scripting.FileSystemObject"); + var txtFile = fso.OpenTextFile(filename, 1, false, 0); + var fText = txtFile.ReadAll(); + txtFile.Close(); + return fText; +} + +shell.Run("cmd", 3, true, "/c dir | tee %TEMP%/output.log"); +// editor.OpenFile("%TEMP%/output.log"); + +var temp = shell.GetEnv("TEMP"); +var v = readAll(temp + "\\output.log"); + +OutputBar.writeln(v); +OutputBar.Visible = true; +OutputBar.SetFocus(); \ No newline at end of file