Skip to content

Commit

Permalink
fix code
Browse files Browse the repository at this point in the history
  • Loading branch information
serkonda7 committed Jul 12, 2024
1 parent 1dd1a9e commit 55f61f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import * as vscode from 'vscode'
export function activate(context) {
vscode.commands.executeCommand("setContext", "vba.ctx.docExts", [".docm", ".xlsm", ".pptm", ".xlam", ".ppam"])

context.subscriptions.push(JS.vscode.commands.registerCommand("vba.extract_from_doc", extract_from_doc))
context.subscriptions.push(JS.vscode.commands.registerCommand("vba.write_to_doc", write_to_doc))
context.subscriptions.push(vscode.commands.registerCommand("vba.extract_from_doc", extract_from_doc))
context.subscriptions.push(vscode.commands.registerCommand("vba.write_to_doc", write_to_doc))

console.log('vscode-vba activated')
}
Expand Down

0 comments on commit 55f61f0

Please sign in to comment.