fix: disable zstyle matcher-list which caused slow tab completion in /nix/store/

This commit is contained in:
oddlama 2025-09-14 00:03:04 +02:00
parent cd896819f9
commit 006d5d7e5d
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A

View file

@ -227,7 +227,9 @@ zstyle ':completion:*' verbose true
# provide .. as a completion # provide .. as a completion
zstyle ':completion:*' special-dirs .. zstyle ':completion:*' special-dirs ..
# match uppercase from lowercase # match uppercase from lowercase
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}' # (disabled because very slow, completing even subdirectories of large
# directories takes multiple seconds e.g. /nix/store/whatever/bin/<TAB>)
#zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'
# -------------------------------------------------------------------------------- # --------------------------------------------------------------------------------