diff options
| author | Ardeshir Nahavandi Fard <68429735+Vonarian@users.noreply.github.com> | 2025-10-05 10:46:44 +0330 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-05 09:16:44 +0200 |
| commit | 1210973cbc978097adfa8f31becf5fe4e2acce99 (patch) | |
| tree | 0709001697e3effafae82e6e67f34683e5c71fb9 /plugins/flutter | |
| parent | d57775d89e15687b87eef990b864492d6c973238 (diff) | |
| download | zsh-1210973cbc978097adfa8f31becf5fe4e2acce99.tar.gz zsh-1210973cbc978097adfa8f31becf5fe4e2acce99.tar.bz2 zsh-1210973cbc978097adfa8f31becf5fe4e2acce99.zip | |
fix(flutter): fix captured keyboard during completion generation (#13350)
Diffstat (limited to 'plugins/flutter')
| -rw-r--r-- | plugins/flutter/flutter.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/flutter/flutter.plugin.zsh b/plugins/flutter/flutter.plugin.zsh index 44d196cd4..5e853b78f 100644 --- a/plugins/flutter/flutter.plugin.zsh +++ b/plugins/flutter/flutter.plugin.zsh @@ -26,4 +26,4 @@ if [[ ! -f "$ZSH_CACHE_DIR/completions/_flutter" ]]; then _comps[flutter]=_flutter fi -flutter zsh-completion >| "$ZSH_CACHE_DIR/completions/_flutter" &|
\ No newline at end of file +flutter zsh-completion < /dev/null >| "$ZSH_CACHE_DIR/completions/_flutter" &|
\ No newline at end of file |
