clarkio / vscode-twitch-highlighter

This is a VS Code extension that will allow your Twitch chat to highlight a line of code via a command message. Example: `!line 8 server.js`. See master branch README.md for more details
https://clarkio.com
203 stars 14 forks source link

HOTFIX: Fixed a registration error with the TreeView containers #110

Closed parithon closed 5 years ago

parithon commented 5 years ago

Purpose

It was brought to my attention that the treeview containers were not working as expected by @clarkio. This is a hotfix to fix the issues.

Cause

When we registered the treeview components with VSCode we reused the same identifier for each panel the treeview is currently in (explorer, debug, and the highlighter panel). I learned that you must have a unique ID for each panel. I made the changes necessary in the package.json and extension.ts files to register our treeview with each of the panels separately which solves the problem.