Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/core/src/node/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
icon: 'ph:pencil-duotone',
category: 'editor',
showInPalette: false,
allowShortcuts: false,

Check failure on line 106 in packages/core/src/node/context.ts

View workflow job for this annotation

GitHub Actions / lint

Object literal may only specify known properties, and 'allowShortcuts' does not exist in type 'DevframeServerCommandInput'.

Check failure on line 106 in packages/core/src/node/context.ts

View workflow job for this annotation

GitHub Actions / lint

Object literal may only specify known properties, and 'allowShortcuts' does not exist in type 'DevframeServerCommandInput'.

Check failure on line 106 in packages/core/src/node/context.ts

View workflow job for this annotation

GitHub Actions / lint

Object literal may only specify known properties, and 'allowShortcuts' does not exist in type 'DevframeServerCommandInput'.

Check failure on line 106 in packages/core/src/node/context.ts

View workflow job for this annotation

GitHub Actions / lint

Object literal may only specify known properties, and 'allowShortcuts' does not exist in type 'DevframeServerCommandInput'.

Check failure on line 106 in packages/core/src/node/context.ts

View workflow job for this annotation

GitHub Actions / lint

Object literal may only specify known properties, and 'allowShortcuts' does not exist in type 'DevframeServerCommandInput'.
handler: (path: string) => rpcHost.invokeLocal('vite:core:open-in-editor', path),
})
context.commands.register({
Expand All @@ -111,6 +112,7 @@
icon: 'ph:folder-open-duotone',
category: 'editor',
showInPalette: false,
allowShortcuts: false,

Check failure on line 115 in packages/core/src/node/context.ts

View workflow job for this annotation

GitHub Actions / lint

Object literal may only specify known properties, and 'allowShortcuts' does not exist in type 'DevframeServerCommandInput'.

Check failure on line 115 in packages/core/src/node/context.ts

View workflow job for this annotation

GitHub Actions / lint

Object literal may only specify known properties, and 'allowShortcuts' does not exist in type 'DevframeServerCommandInput'.

Check failure on line 115 in packages/core/src/node/context.ts

View workflow job for this annotation

GitHub Actions / lint

Object literal may only specify known properties, and 'allowShortcuts' does not exist in type 'DevframeServerCommandInput'.

Check failure on line 115 in packages/core/src/node/context.ts

View workflow job for this annotation

GitHub Actions / lint

Object literal may only specify known properties, and 'allowShortcuts' does not exist in type 'DevframeServerCommandInput'.

Check failure on line 115 in packages/core/src/node/context.ts

View workflow job for this annotation

GitHub Actions / lint

Object literal may only specify known properties, and 'allowShortcuts' does not exist in type 'DevframeServerCommandInput'.
handler: (path: string) => rpcHost.invokeLocal('vite:core:open-in-finder', path),
})

Expand Down
Loading