En Fish cuando comienza a escribir, la función de autocompletado muestra automáticamente la primera suposición autocompletada en la línea misma.
En zsh tienes que presionar la pestaña, y muestra el autocompletado a continuación. ¿Hay alguna forma de hacer que zsh se comporte más como un pez a este respecto?
(Estoy usando Oh My Zsh ...)
zsh
autocomplete
fish
korylprince
fuente
fuente
Respuestas:
He implementado un zsh-autosuggestions complemento .
Debe integrarse bien con zsh-history-substring-search y zsh-syntax-highlighting, que son características portadas de peces.
fuente
Tratar:
Ver:
para detalles.
fuente
Siga los pasos aquí para obtener otras características también: https://github.com/abhigenie92/zsh_to_fish
Instalar oh-my-zsh
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
Clonar los complementos necesarios.
git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions git clone https://github.com/zsh-users/zsh-history-substring-search ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-history-substring-search git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
Agregue complementos
~/.zshrc
comoplugins = ( [plugins...] zsh-autosuggestions zsh-history-substring-search zsh-syntax-highlighting)
Nota: asegúrese de que zsh-syntax-highlighting sea el último en la lista anterior.Fix cuestiones de fondo el tema (no es necesario depende de su tema.) Añadir la siguiente línea a su
~/.zshrc
.ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=white'
Reiniciar zsh
source ~/.zshrc
Si te gusta la respuesta, considera protagonizar el repositorio de Github.
fuente