Revert "inline completion: Respect disabled_globs when manually requesting completions (#24121)" (#24189)

This reverts commit eb820ab800.
The previous PR broke manual completions. Turns out there is more
confusing behavior then i realized, will follow up with another PR soon.

Closes #ISSUE

Release Notes:

- N/A
This commit is contained in:
Bennet Bo Fenner 2025-02-04 14:02:45 +01:00 committed by GitHub
parent d400bdea76
commit cc2ebb96a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4694,10 +4694,6 @@ impl Editor {
window: &mut Window,
cx: &mut Context<Self>,
) {
if !self.inline_completions_enabled(cx) {
return;
}
if !self.has_active_inline_completion() {
self.refresh_inline_completion(false, true, window, cx);
return;