Some basic emeditor scripts for formatting json and running builds.
parent
093615aeab
commit
5c26c09815
|
@ -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;
|
||||||
|
}
|
|
@ -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();
|
Loading…
Reference in New Issue