Change highlighting
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
"name": "frog",
|
"name": "frog",
|
||||||
"displayName": "frog",
|
"displayName": "frog",
|
||||||
"description": "The Oracle SQL workbench for VSCode",
|
"description": "The Oracle SQL workbench for VSCode",
|
||||||
"version": "0.0.7",
|
"version": "0.0.9",
|
||||||
"publisher": "todie",
|
"publisher": "todie",
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.17.0"
|
"vscode": "^1.17.0"
|
||||||
@@ -56,7 +56,7 @@
|
|||||||
{
|
{
|
||||||
"language": "frog-runner",
|
"language": "frog-runner",
|
||||||
"scopeName": "code.log",
|
"scopeName": "code.log",
|
||||||
"path": "./src/syntaxes/frog-runner.tmLanguage"
|
"path": "./src/frog-runner.tmLanguage"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@@ -114,6 +114,7 @@ export function activate(context: vscode.ExtensionContext) {
|
|||||||
|
|
||||||
myOutputChannel.append("-- " + new Date() + " -------------------------------\n");
|
myOutputChannel.append("-- " + new Date() + " -------------------------------\n");
|
||||||
outputBuffer = "";
|
outputBuffer = "";
|
||||||
|
statusBarItem.text = currentConnection.name + " (Connected)";
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log(e);
|
console.log(e);
|
||||||
}
|
}
|
||||||
@@ -121,7 +122,7 @@ export function activate(context: vscode.ExtensionContext) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
dbSession.stderr.on('data', (data) => {
|
dbSession.stderr.on('data', (data) => {
|
||||||
myOutputChannel.show();
|
myOutputChannel.show(true);
|
||||||
myOutputChannel.append(data.toString());
|
myOutputChannel.append(data.toString());
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -139,6 +140,7 @@ export function activate(context: vscode.ExtensionContext) {
|
|||||||
|
|
||||||
myOutputChannel.append("-- " + new Date() + " -------------------------------\n"); //Executing: '" + text + "'\n");
|
myOutputChannel.append("-- " + new Date() + " -------------------------------\n"); //Executing: '" + text + "'\n");
|
||||||
dbSession.stdin.write(text + "\n--- END ---\n");
|
dbSession.stdin.write(text + "\n--- END ---\n");
|
||||||
|
statusBarItem.text = currentConnection.name + " (Connected, Query running...)";
|
||||||
});
|
});
|
||||||
|
|
||||||
context.subscriptions.push(disposable, registration);
|
context.subscriptions.push(disposable, registration);
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
<string>log</string>
|
<string>log</string>
|
||||||
</array>
|
</array>
|
||||||
<key>name</key>
|
<key>name</key>
|
||||||
<string>Log file</string>
|
<string>frog-runner</string>
|
||||||
<key>patterns</key>
|
<key>patterns</key>
|
||||||
<array>
|
<array>
|
||||||
<dict>
|
<dict>
|
||||||
@@ -44,5 +44,7 @@
|
|||||||
<string>invalid.illegal</string>
|
<string>invalid.illegal</string>
|
||||||
</dict>
|
</dict>
|
||||||
</array>
|
</array>
|
||||||
|
<key>uuid</key>
|
||||||
|
<string>648a6fba-bf11-11e7-abc4-cec278b6b50a</string>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
Reference in New Issue
Block a user