mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
work around a bug in ohmyzsh (#2152)
The bug was introduced here: 3dd83a22a1
This causes Oh My Zsh to print \r to the terminal.
This commit is contained in:
parent
35165798a8
commit
1a4b01c232
1 changed files with 1 additions and 1 deletions
|
@ -6584,7 +6584,7 @@ function _p9k_clear_instant_prompt() {
|
|||
print -rn -- $terminfo[rc]${(%):-%b%k%f%s%u}$terminfo[ed]
|
||||
local unexpected=${(S)${${content//$'\e[?'<->'c'}//$'\e['<->' q'}//$'\e'[^$'\a\e']#($'\a'|$'\e\\')}
|
||||
# Visual Studio Code prints this garbage.
|
||||
unexpected=${unexpected//$'\033[1;32mShell integration activated\033[0m\n'}
|
||||
unexpected=${${unexpected//$'\033[1;32mShell integration activated\033[0m\n'}//$'\r'}
|
||||
if [[ -n $unexpected ]]; then
|
||||
local omz1='[Oh My Zsh] Would you like to update? [Y/n]: '
|
||||
local omz2='Updating Oh My Zsh'
|
||||
|
|
Loading…
Reference in a new issue