Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
fc -l doesn't match %h number?
- X-seq: zsh-workers 25796
- From: "Rocky Bernstein" <rocky.bernstein@xxxxxxxxx>
- To: "Zsh hackers list" <zsh-workers@xxxxxxxxxx>
- Subject: fc -l doesn't match %h number?
- Date: Wed, 1 Oct 2008 11:54:45 -0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=t9YnoK34UsAZ3ehbjEK0OlYqLyyrn0CRsA2KjezCjFI=; b=ilbwUjiRKwYMD348CJ8d9TO2IwYeX7e6+8GKIWQsZOe4BpB+YFDXpqY5yqmo4OsPn/ 6GetBGn1YuILAzwRQR2mw7jHyQei0WaDY76mZ7qjzbkRlHyAJepv90rszfIs0a2uJrrS lJ3L5bTLvzpMt6WB7yBJTKuPEv6lTEDu8QjCs=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=xTJ/AM58Cpre2jvN7sNsFTw2nxwmdsMcjcX5TwfmtWCq1D7N/Jnhu1/pRaFdMrl5q5 nzHahEg8sNi5u/1yvpuUvfHqCjiClano8Hmhe1uWGM6rk2GSKDsEl4+TeGA7JElrp8hv MQK7YdGMl0TgCAg3xBid8+H6XF/66oqtHrddI=
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
It looks to me like "fc -l" is not showing a command in the history
that %h is counting when one enters a new subshell.
Consider this program:
#==============================
fc -ap /tmp/hist 10 10
hook() {
line=''
fc -l 2>/dev/null
print subshell level: $ZSH_SUBSHELL
print $ZSH_DEBUG_CMD
vared -e -h -p 'hist<%h> ' line
[[ $line == 'q' ]] && exit
print -s -- "$line"
}
trap 'hook' DEBUG
x=2
( x=3;
y=4
)
x=5
#==============================
Now let's run:
$ zsh fc.sh
subshell level: 0
x=2
hist<1> a
1 a
subshell level: 0
(
x=3
y=4
)
hist<2> b
1 a
subshell level: 1
x=3
hist<3>
# ...
Notice that the numbers in angle brackets keep increasing <1>, <2>,
<3> as they should. However above "hist<3>" we just see "1 a" listed
and not "b".
Am I doing something wrong? Thought's about what's going on here?
Thanks.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author