diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2019-10-26 21:53:00 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2019-10-26 21:53:00 +0300 |
commit | 16d526377db2ae949b6d9ac8eb199e2d9513061d (patch) | |
tree | d8aef3d3d2d565773fea6f65ea4fabadbf874f8c | |
parent | e8cf0f6d7eeedea5e9ffe2aefab0aea3679ca5ee (diff) |
doc cleanup
-rw-r--r-- | README.md | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -241,9 +241,13 @@ the output, or move it above the instant prompt preamble. Here's an example of `~/.zshrc` that breaks when instant prompt is enabled: ```zsh +# OK to perform console I/O before this point. if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" fi +# From this point on, until zsh is fully initialized, console input won't work and +# console output may appear uncolored. + keychain id_rsa --agents ssh # asks for password chatty-script # spams to stdout even when everything is fine ``` |