diff options
| author | Martin Bjeldbak Madsen <me@martinbjeldbak.com> | 2024-06-08 18:47:51 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-08 10:47:51 +0200 |
| commit | e898de066473eb725d582a10483d9a2570d221f8 (patch) | |
| tree | 48c8ad7a8058ba3b3b51c9a29c2e51ee7cf4a681 /plugins/eza | |
| parent | efdfe2f29ac57a9de76391b4e5548edab6a43241 (diff) | |
| download | zsh-e898de066473eb725d582a10483d9a2570d221f8.tar.gz zsh-e898de066473eb725d582a10483d9a2570d221f8.tar.bz2 zsh-e898de066473eb725d582a10483d9a2570d221f8.zip | |
fix(eza): icons tab completion (#12483)
Diffstat (limited to 'plugins/eza')
| -rw-r--r-- | plugins/eza/eza.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/eza/eza.plugin.zsh b/plugins/eza/eza.plugin.zsh index 79f5a0f71..e95b14749 100644 --- a/plugins/eza/eza.plugin.zsh +++ b/plugins/eza/eza.plugin.zsh @@ -32,7 +32,7 @@ function _configure_eza() { _EZA_TAIL+=("--git") fi if zstyle -t ':omz:plugins:eza' 'icons'; then - _EZA_TAIL+=("--icons") + _EZA_TAIL+=("--icons=auto") fi zstyle -s ':omz:plugins:eza' 'time-style' _val if [[ $_val ]]; then |
