mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
8 lines
198 B
Bash
8 lines
198 B
Bash
# auto rehash
|
|
_force_rehash(){
|
|
(( CURRENT == 1)) && rehash
|
|
return 1 # because we didn't really complete anything
|
|
}
|
|
|
|
zstyle ':completion:::::' completer _force_rehash _complete _approximate
|
|
|