-
Notifications
You must be signed in to change notification settings - Fork 16
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
Fixed duplicate auto-suggest labels for GO/GOSUB/GO TO/GOTO IntelliSense Statements #147
Conversation
…mplete for GO/GOSUB/GO TO/GOTO
Hi @tcharts-boop Thanks for your help on this item. Just a FYI. All pull requests should be for the project's A while back, the decision was made for the Bearing that in mind, it's probably best to set up your own repo that way, so pull requests are from your Again, thanks for taking on this issue. The more help, the better! |
Ahh understood. I’ll set up my developer environment to reflect what you suggest so in the future I’m adhering to the project’s guidelines. Thanks! |
@kpowick, would you like me to close this merge request and reopen it to merge onto the |
@tcharts-boop You should be able to edit this request and change the branch to |
Looks like this one was able to be re-opened unlike #139 |
Nice fix! |
* add dom to tsconfig for client * added to FormData.d.ts (reference to Blob) and fixed duplicate autocomplete for GO/GOSUB/GO TO/GOTO (#147) * Update language-configuration.json (#150) * RestFS and Package Updates (#164) * package updates + restfs switch to axios * Still not there but latest code for Pete * Update axios response for rest calls. * Prep work for 2.1.3 release * Added _response_object() function to check response body. Fixed some arguments for Axios calls. Updated REST documentation. * Latest package updates Co-authored-by: Peter Schellenbach <[email protected]> * Fix parsing of mult expression var * var (#161) Fix label must be start of line Fix highlight ";" not part of comment Co-authored-by: Stuart Boydell <[email protected]> * Prep 2.1.3 release * Add new 'Auto Close' setting for RestFS * Fixes to rename, writeFile * Remove AutoClose setting for RestFS * Cleaned up RestFS handling of failure status codes (axios). Added FTSERVER launch config. Updated RestFS documentation. Co-authored-by: Ted <[email protected]> Co-authored-by: andrewcole50 <[email protected]> Co-authored-by: Peter Schellenbach <[email protected]> Co-authored-by: stuboydl <[email protected]> Co-authored-by: Stuart Boydell <[email protected]>
The issue was that every label would be added without checking if it already existed within the
Intellisense
object. It now will check if the label exists in theIntellisense
object before adding it.Issue: #127