mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-06-27 21:41:31 +02:00
fix: update output channel creation to include specific ID for frontmatter project #1006
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
|
||||
- Removed the chatbot command and all related code and references
|
||||
- [#983](https://github.com/estruyf/vscode-front-matter/issues/983): Removal of the `frontMatter.sponsors.ai.enabled` features
|
||||
- [#1006](https://github.com/estruyf/vscode-front-matter/issues/1006): Fix output channel colorizer schema to only apply to the Front Matter output channel
|
||||
|
||||
### 🎨 Enhancements
|
||||
|
||||
|
||||
+1
-4
@@ -2789,10 +2789,7 @@
|
||||
},
|
||||
"languages": [
|
||||
{
|
||||
"id": "frontmatter.project.output",
|
||||
"mimetypes": [
|
||||
"text/x-code-output"
|
||||
]
|
||||
"id": "frontmatter.project.output"
|
||||
}
|
||||
],
|
||||
"grammars": [
|
||||
|
||||
@@ -12,7 +12,7 @@ export class Logger {
|
||||
|
||||
private constructor() {
|
||||
const displayName = Extension.getInstance().displayName;
|
||||
Logger.channel = window.createOutputChannel(displayName);
|
||||
Logger.channel = window.createOutputChannel(displayName, 'frontmatter.project.output');
|
||||
commands.registerCommand(COMMAND_NAME.showOutputChannel, () => {
|
||||
Logger.channel?.show();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user