Feat/lsp and ide experience#33
Merged
ulysse-bouchet-simvia merged 3 commits intomainfrom Apr 28, 2026
Merged
Conversation
…words
Stop bailing out of command parsing when an inner line looks like a top-level
call (e.g. `MODELE=CO("name")`), seed BLOC-evaluation context with SIMP
defaults so commands like CALC_MODES expose their gated keywords, and treat
`CO("name")` as a future-output declaration that registers `name` as a
defined variable.
Match popSuggest triggers exactly so accepted snippet bodies don't re-fire the widget, gate the newline retrigger on being inside an unclosed call so plain Enter at top level no longer latches VS Code on a "No suggestions" session, drop the space trigger character that was causing the same latch on auto-indent, and pair DEBUT autocompletion with a matching FIN() block with the cursor in between.
Wraps the diagnostics false-positive fixes, the suggest-widget polish, the DEBUT/FIN snippet pairing, and a hover for CO-declared variables.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
[1.10.1] - 2026-04-28
A round of LSP polish: completion no longer auto-opens on top-level newlines or sticks on "No suggestions", and edit-time diagnostics stop crying wolf on macros that take
CO("name")outputs or commands whose keywords live behind aBLOCgate.Added
DEBUTautocompletion now inserts a pairedFIN()block with the cursor parked between them.CO("name")-declared variable shows which macro will produce it and on what line, matching the regular variable hover.Fixed
CO("name")inside a macro is recognised as a future-output declaration, so later references tonameno longer flag as undefined.ASSE_ELEM_SSDand similar commands no longer reportSOUS_STRUC/LIAISONmissing when the keyword's value contains another call (MODELE=CO(...)).CALC_MODESkeywords gated byBLOC(condition=...)on defaulted catalog values are no longer reported as unknown.