mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-27 04:07:13 +01:00
* Introduce a concept of Command Descriptions for TF-IDF indexing This does a few things in a few strategic commits: ### Commit 1 The first commit contains the actual functional changes. * In our TF-IDF implementation in the Command Palette we now consume command's description if available. This will help provide more hits in the similar commands category section of the Command Palette. To do this we now include the description in the MenuItem which is needed by the Command Palette. * It allows Allows `description` to be an `ILocalizedString` so that we can include both the translated & original strings in the TF-IDF calculation * Rename any `description: ICommandHandlerDescription` to `metadata: ICommandMetadata` * move to localize2 * Joh's feedback * Add a description for auto save