v0.7.1 — @-prefix procedure fuzzy filter fix
Patch release fixing procedure filtering after @-prefix.
Fixed
- Procedure completion after
@filter prefix. Typingcall @aused to hide procedures whose name started witharight after@(@abort_posting,@arc,@axes_sync) while keeping those whose name hadaafter an underscore (@wc_abs_rel,@get_arc_center). Root cause: VSCode's fuzzy scorer treats_,-,., space and others as word separators but not@— soaright after@was classified as an inner character rather than a word start, and VSCode's defaultmatchOnWordStartOnlymode dropped the item.
Fix
Two synchronized edits:
language-configuration.json#wordPatternno longer includes@as an optional prefix (aligns with VSCode's defaultwordSeparators).- Procedure completion items (user-defined and system-catalog) set
filterTextto the name without the@prefix. Display (label) and insertion (insertText) remain@name(...)— only the fuzzy-match input changes.
Superseded by v0.7.3 — please install the latest. v0.7.1 introduced a double-
@regression on accept, fixed in v0.7.2.