Skip to content

Commit

Permalink
Merge branch 'bugfix/dubious-fn'
Browse files Browse the repository at this point in the history
  • Loading branch information
BananaAcid committed Apr 23, 2020
2 parents c17fb6a + 3b36d17 commit db648ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 0 additions & 5 deletions vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@
"*",
"onCommand:extension.openInBrowser",
"onCommand:extension.closePort",
"onCommand:extension.makeRequest",
"onCommand:extension.compileFile"
],
"main": "./out/extension.js",
Expand All @@ -87,10 +86,6 @@
"command": "extension.closePort",
"title": "Close Port"
},
{
"command": "extension.makeRequest",
"title": "Make Request"
},
{
"command": "extension.compileFile",
"title": "Compile File(s)"
Expand Down
4 changes: 3 additions & 1 deletion vscode-extension/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ export function activate(context: vscode.ExtensionContext) {
}
}
);
<<<<<<< HEAD
let makeRequest = vscode.commands.registerCommand(
"extension.makeRequest",
async () => {
Expand All @@ -285,6 +286,8 @@ export function activate(context: vscode.ExtensionContext) {
});*/
}
);
=======
>>>>>>> bugfix/dubious-fn
let compileFile = vscode.commands.registerCommand(
"extension.compileFile",
path => {
Expand All @@ -297,7 +300,6 @@ export function activate(context: vscode.ExtensionContext) {

context.subscriptions.push(openInBrowser);
context.subscriptions.push(closePort);
context.subscriptions.push(makeRequest);
context.subscriptions.push(compileFile);
vscode.workspace.onDidSaveTextDocument(document => {
const { fileName } = document;
Expand Down

0 comments on commit db648ff

Please sign in to comment.