-
-
Notifications
You must be signed in to change notification settings - Fork 84
Query hot reloading during development #1803
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
Conversation
772b512
to
c03c303
Compare
const languageDefinitions = new LanguageDefinitions(treeSitter); | ||
const languageDefinitions = new LanguageDefinitions(fileSystem, treeSitter); | ||
|
||
ide.disposeOnExit(rangeUpdater, languageDefinitions, hatTokenMap, debug); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
whoops; looks like we forgot to dispose a bunch of stuff 😅
); | ||
|
||
if (ide().runMode === "test") { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Development is much easier if you can see the scopes that allow-multiple is complaining about. If you fail, you can't see anything so it's really hard to debug
- Required by #1803 - Required by #1663 ## Checklist - [ ] I have added [tests](https://www.cursorless.org/docs/contributing/test-case-recorder/) - [ ] I have updated the [docs](https://github.com/cursorless-dev/cursorless/tree/main/docs) and [cheatsheet](https://github.com/cursorless-dev/cursorless/tree/main/cursorless-talon/src/cheatsheet) - [ ] I have not broken the cheatsheet
c03c303
to
f640f98
Compare
Checklist