Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: %e in correction prompt
- X-seq: zsh-workers 6493
- From: Sven Wischnowsky <wischnow@xxxxxxxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxx
- Subject: Re: %e in correction prompt
- Date: Mon, 7 Jun 1999 12:59:44 +0200 (MET DST)
- In-reply-to: Peter Stephenson's message of Fri, 04 Jun 1999 16:29:33 +0200
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
Peter Stephenson wrote:
> I keep forgetting to mention it, but putting %e in
> ${compconfig[correct_prompt]} doesn't work any more, it always just
> disappears. I get the same when I just run compinit from zsh -f.
Hugh. When did this happen?
(The same for _expand).
Bye
Sven
diff -u oc/Core/_approximate Completion/Core/_approximate
--- oc/Core/_approximate Fri Jun 4 14:40:43 1999
+++ Completion/Core/_approximate Mon Jun 7 12:56:20 1999
@@ -153,7 +153,7 @@
_comp_correct=1
compstate[matcher]=-1
-_correct_prompt="${cfgps//\%e/1}"
+_correct_prompt="${cfgps//\\%e/1}"
# We also need to set `extendedglob' and make the completion
# code behave as if globcomplete were set.
@@ -188,7 +188,7 @@
[[ "${#:-$PREFIX$SUFFIX}" -le _comp_correct+1 ]] && break
(( _comp_correct++ ))
- _correct_prompt="${cfgps//\%e/$_comp_correct}"
+ _correct_prompt="${cfgps//\\%e/$_comp_correct}"
done
compstate[matcher]="$compstate[total_matchers]"
diff -u oc/Core/_expand Completion/Core/_expand
--- oc/Core/_expand Fri Jun 4 14:40:43 1999
+++ Completion/Core/_expand Mon Jun 7 12:57:48 1999
@@ -132,7 +132,7 @@
if [[ -z "$compconfig[expand_prompt]" ]]; then
compadd -UQ $group _expand - "$exp[@]"
else
- compadd -UQ -X "${compconfig[expand_prompt]//\%o/$word}" \
+ compadd -UQ -X "${compconfig[expand_prompt]//\\%o/$word}" \
$group _expand - "$exp[@]"
fi
[[ "$compconfig[expand_menu]" != *last* &&
--
Sven Wischnowsky wischnow@xxxxxxxxxxxxxxxxxxxxxxx
Messages sorted by:
Reverse Date,
Date,
Thread,
Author