diff options
author | Suhas Karanth <sudo-suhas@users.noreply.github.com> | 2021-01-15 21:19:46 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-15 16:49:46 +0100 |
commit | 5db205908e9b5c43b74106c313712200c08fa79c (patch) | |
tree | 0034a948e876bb5afc797256db9da249827cfde9 /templates | |
parent | a3bdff694a388c9bede63afec3c4a0a78bffa1ba (diff) | |
download | zsh-5db205908e9b5c43b74106c313712200c08fa79c.tar.gz zsh-5db205908e9b5c43b74106c313712200c08fa79c.tar.bz2 zsh-5db205908e9b5c43b74106c313712200c08fa79c.zip |
chore: caution against `COMPLETION_WAITING_DOTS` in template (#8352)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/zshrc.zsh-template | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/zshrc.zsh-template b/templates/zshrc.zsh-template index 307618104..65d5ea65b 100644 --- a/templates/zshrc.zsh-template +++ b/templates/zshrc.zsh-template @@ -45,6 +45,8 @@ ZSH_THEME="robbyrussell" # ENABLE_CORRECTION="true" # Uncomment the following line to display red dots whilst waiting for completion. +# Caution: this setting can cause issues with multiline prompts (zsh 5.7.1 and newer seem to work) +# See https://github.com/ohmyzsh/ohmyzsh/issues/5765 # COMPLETION_WAITING_DOTS="true" # Uncomment the following line if you want to disable marking untracked files |