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

Client refactor #57

Closed parithon closed 5 years ago

parithon commented 5 years ago

The extension.ts document is getting unwieldy and needs some refactoring. I refactored the language client out of the extension.ts document into its own class in twitchLanguageClient.ts. Additionally, I renamed the server.ts to twitchLanguageServer.ts to better identify its purpose. Finally, I also cleaned up the unnecessary functions in credentialManager.ts and fixed the camel casing of the twitchHighlighterTreeView.ts which causes Linux to fail during a build. (e.g. casing matters on Linux)

clarkio commented 5 years ago

Whew no more conflicts. Thanks!