You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
feat: filter path suggestions by file type in HTML attributes
Implements intelligent file filtering for HTML path completion based on
tag type and attributes. Files matching the expected type are now
prioritized in autocomplete suggestions.
Changes:
Add optional 'attributes' field to HtmlAttributeValueContext interface
Pass node attributes to completion participants in htmlCompletion
Implement getExtensionFilter() method in pathCompletion
Use sortText to prioritize matching files (0_) over others (1_)
This change introduces a new hideEndTagSuggestions configuration option
in the CompletionConfiguration interface that allows users to disable
closing tag suggestions in HTML completions.
Previously, the html.suggest.html5 setting controlled whether HTML5
tags, properties, and values were suggested, but it did not affect
closing tag suggestions (e.g., </div>). Users who wanted to disable
the extension's suggestions entirely had no way to turn off these
end tag completions without disabling the entire extension.
Changes:
Added hideEndTagSuggestions?: boolean to the CompletionConfiguration
interface in htmlLanguageTypes.ts
Updated the collectCloseTagSuggestions function in htmlCompletion.ts
to check this setting and return early if end tag suggestions are
disabled
Added comprehensive tests to verify the setting works correctly in
various scenarios
The setting defaults to false (showing end tag suggestions) to
maintain backward compatibility with existing behavior.
Signed-off-by: Giovanni Magliocchetti <giovimag123@gmail.com>
add 5.6.0 entry for CompletionConfiguration.hideEndTagSuggestions
Signed-off-by: Giovanni Magliocchetti <giovimag123@gmail.com>
Co-authored-by: Martin Aeschlimann <martinae@microsoft.com>
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.
Updated Packages