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

Create panel in sidebar to list highlights #2

Closed lannonbr closed 5 years ago

lannonbr commented 5 years ago

You can create new panels in the sidebar with tree-views. It would be cool to be able to see the list of highlights and click on one to go focus on it.

Here's a sample of how to implement tree-views: https://github.com/Microsoft/vscode-extension-samples/tree/master/tree-view-sample

clarkio commented 5 years ago

To expand upon this suggestion the list would be by twitch user handle, when expanded it would show the file and lines they highlighted.

From there the host can right-click and execute some list of actions (maybe unhighlight, dismiss, etc.)

clarkio commented 5 years ago

TODO: research another example panel that dynamically updates since we start with no highlighted lines and then need to show the list of highlights in the panel once they've been added to files.