Disable forceful sorting of the slash command argument completions (#16240)

Also bubble up the current active tab's path in the \tab argument
completions.

Release Notes:

- N/A
This commit is contained in:
Kirill Bulatov 2024-08-14 22:34:25 +03:00 committed by GitHub
parent b55e8383c8
commit e8bae839ed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 113 additions and 68 deletions

View file

@ -346,6 +346,10 @@ impl CompletionProvider for SlashCommandCompletionProvider {
false
}
}
fn sort_completions(&self) -> bool {
false
}
}
impl SlashCommandLine {