mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-21 04:58:24 +08:00
Fix typo
This commit is contained in:
parent
ff497e25c0
commit
671ad1f4a6
@ -174,8 +174,8 @@ static constexpr long kHighlightTimeoutForExecutionMs = 250;
|
||||
/// Get the debouncer for autosuggestions and background highlighting.
|
||||
/// These are deliberately leaked to avoid shutdown dtor registration.
|
||||
static debounce_t &debounce_autosuggestions() {
|
||||
const long kAutosuggetTimeoutMs = 500;
|
||||
static auto res = new debounce_t(kAutosuggetTimeoutMs);
|
||||
const long kAutosuggestTimeoutMs = 500;
|
||||
static auto res = new debounce_t(kAutosuggestTimeoutMs);
|
||||
return *res;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user