Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: remove useless tinymist.preview.showInActivityBar #543

Merged
merged 1 commit into from
Aug 19, 2024
Merged
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
9 changes: 2 additions & 7 deletions editors/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@
"id": "tinymist.preview.content-preview",
"type": "webview",
"name": "Content",
"when": "ext.tinymistActivated && (config.tinymist.preview.showInActivityBar || config.typst-preview.showInActivityBar)"
"when": "ext.tinymistActivated"
},
{
"id": "tinymist.preview.outline",
"name": "Outline",
"when": "ext.tinymistActivated && (config.tinymist.preview.showInActivityBar || config.typst-preview.showInActivityBar)"
"when": "ext.tinymistActivated"
}
]
},
Expand Down Expand Up @@ -518,11 +518,6 @@
"type": "boolean",
"default": false
},
"tinymist.preview.showInActivityBar": {
"description": "(Experimental) Show a preview panel in activity bar.",
"type": "boolean",
"default": false
},
"tinymist.preview.pinPreviewFile": {
"description": "Declare current previewing file as entrypoint for typst-lsp or tinymist. This will make typst-lsp or tinymist to use this file as entrypoint instead of the file opened in vscode. This can improve diagnostics messages and auto completion but still being experimental.",
"type": "boolean",
Expand Down
Loading