Skip to content

Commit

Permalink
target at ver 1.67
Browse files Browse the repository at this point in the history
  • Loading branch information
jshinonome committed Aug 17, 2022
1 parent 50f6311 commit 38e2d17
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"publisher": "jshinonome",
"license": "GPL-3.0-or-later",
"engines": {
"vscode": "^1.70.0"
"vscode": "^1.67.0"
},
"categories": [
"Programming Languages",
Expand Down Expand Up @@ -757,7 +757,7 @@
"@types/long": "^4.0.2",
"@types/node": "^18.7.2",
"@types/request": "^2.48.8",
"@types/vscode": "1.70.0",
"@types/vscode": "1.67.0",
"@types/vscode-notebook-renderer": "^1.60.0",
"@types/webpack-env": "^1.17.0",
"@typescript-eslint/parser": "^5.33.0",
Expand Down
4 changes: 2 additions & 2 deletions src/client/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { qServers } from './modules/q-server-tree';
import { QStatusBarManager } from './modules/q-status-bar-manager';
import { runQFile, sendToCurrentTerm } from './modules/q-term';
import { QueryConsole } from './modules/query-console';
import { exportAsQFile } from './notebook/export';
// import { exportAsQFile } from './notebook/export';
import { QNotebookKernel } from './notebook/kernel';
import { QNotebookSerializer } from './notebook/serializer';

Expand Down Expand Up @@ -438,7 +438,7 @@ export function activate(context: ExtensionContext): void {
context.subscriptions.push(
commands.registerCommand(
'q-notebook.export', async () => {
exportAsQFile(window.activeNotebookEditor?.notebook);
// exportAsQFile(window.activeNotebookEditor?.notebook);
}
)
);
Expand Down

0 comments on commit 38e2d17

Please sign in to comment.