mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-03 10:21:46 +02:00
10657: One change missed in 10635.
Also, a no-op cleanup in prompt_bart_setup.
This commit is contained in:
parent
71157907ad
commit
6888f6c3a7
2 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2000-04-11 Bart Schaefer <schaefer@zsh.org>
|
||||||
|
|
||||||
|
* 10657: One change missed in 10635.
|
||||||
|
|
||||||
|
* Functions/Prompts/prompt_bart_setup: No-op cleanup.
|
||||||
|
|
||||||
2000-04-11 Sven Wischnowsky <wischnow@informatik.hu-berlin.de>
|
2000-04-11 Sven Wischnowsky <wischnow@informatik.hu-berlin.de>
|
||||||
|
|
||||||
* 10650: Completion/Core/_files: make trailing blanks in
|
* 10650: Completion/Core/_files: make trailing blanks in
|
||||||
|
@ -46,7 +52,7 @@
|
||||||
without a command; allow multiple patterns per string in
|
without a command; allow multiple patterns per string in
|
||||||
file-patterns; update _next_tags to work with labels
|
file-patterns; update _next_tags to work with labels
|
||||||
|
|
||||||
2000-04-10 Bart Schaefer <schaefer@brasslantern.com>
|
2000-04-10 Bart Schaefer <schaefer@zsh.org>
|
||||||
|
|
||||||
* 10628: Doc/Zsh/compsys.yo, Completion/User/_make: Check for
|
* 10628: Doc/Zsh/compsys.yo, Completion/User/_make: Check for
|
||||||
GNU make using "_call version ..." as was done for GNU diff.
|
GNU make using "_call version ..." as was done for GNU diff.
|
||||||
|
|
|
@ -19,7 +19,7 @@ prompt_bart_help () {
|
||||||
The "off" token temporarily disables the theme; "on" restores it.
|
The "off" token temporarily disables the theme; "on" restores it.
|
||||||
EOF
|
EOF
|
||||||
[[ $(read -Ek 1 "?${(%):-%S[press return]%s}") == [Qq] ]] &&
|
[[ $(read -Ek 1 "?${(%):-%S[press return]%s}") == [Qq] ]] &&
|
||||||
print -nP $'\r'%E && return
|
print -nP '\r%E' && return
|
||||||
<<-\EOF
|
<<-\EOF
|
||||||
|
|
||||||
The "upper left prompt" looks like:
|
The "upper left prompt" looks like:
|
||||||
|
@ -36,7 +36,7 @@ prompt_bart_help () {
|
||||||
changes only after each command, as does the rest of the prompt.
|
changes only after each command, as does the rest of the prompt.
|
||||||
EOF
|
EOF
|
||||||
[[ $(read -Ek 1 "?${(%):-%S[press return]%s}") == [Qq] ]] &&
|
[[ $(read -Ek 1 "?${(%):-%S[press return]%s}") == [Qq] ]] &&
|
||||||
print -nP $'\r'%E && return
|
print -nP '\r%E' && return
|
||||||
<<-\EOF
|
<<-\EOF
|
||||||
|
|
||||||
When RPS1 (RPROMPT) is set before this prompt is selected and a
|
When RPS1 (RPROMPT) is set before this prompt is selected and a
|
||||||
|
|
Loading…
Reference in a new issue