Microsoft/TypeScript

Respect vscode recommendations for Go To Symbol feature

Open

#56,612 建立於 2023年9月20日

在 GitHub 查看
 (8 留言) (0 反應) (0 負責人)TypeScript (6,726 fork)batch import
Experience EnhancementHelp WantedSuggestion

倉庫指標

Star
 (48,455 star)
PR 合併指標
 (平均合併 6天 17小時) (30 天內合併 9 個 PR)

描述

🚀 feature request

Description

When using "Go to symbol" feature, search is case sensitive and do not handle fuzzy search making the whole feature almost useless. If you have to know in advance the exact name including the case, it is way more useless.

Describe the solution you'd like

As mentionned by the team in this related ticket, it is the plugin responsability to interpret the search in a relaxed way.

The query-parameter should be interpreted in a relaxed way as the editor will apply its own highlighting and scoring on the results. A good rule of thumb is to match case-insensitive and to simply check that the characters of query appear in their order in a candidate symbol. Don't use prefix, substring, or similar strict matching.

I might be wrong, but it seems to me this is this plugin responsability then.

貢獻者指南