Skip to content

Commit 6e89bc4

Browse files
committed
format
1 parent 1f6b895 commit 6e89bc4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

packages/vscode-extension/src/commands/convert.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ export function cmdConvertFile() {
3333
});
3434
}
3535

36-
37-
38-
3936
export async function cmdConvertText() {
4037
const editor = window.activeTextEditor;
4138
if (!editor) {

packages/vscode-extension/src/extension.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,10 @@ export async function activate(context: ExtensionContext) {
138138
}),
139139
commands.registerCommand("pretext-tools.convertText", cmdConvertText),
140140
commands.registerCommand("pretext-tools.convertFile", cmdConvertFile),
141-
commands.registerCommand("pretext-tools.convertFilePandoc", convertToPretext),
141+
commands.registerCommand(
142+
"pretext-tools.convertFilePandoc",
143+
convertToPretext,
144+
),
142145
commands.registerCommand("pretext-tools.showLog", showLog),
143146
commands.registerCommand("pretext-tools.refreshTargets", refreshProjects),
144147
//commands.registerCommand("pretext-tools.installSage", cmdInstallSage),

0 commit comments

Comments
 (0)