From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from euclid.skiles.gatech.edu (list@euclid.skiles.gatech.edu [130.207.146.50]) by werple.net.au (8.7/8.7.1) with ESMTP id JAA14180 for ; Sun, 18 Feb 1996 09:02:48 +1100 (EST) Received: (from list@localhost) by euclid.skiles.gatech.edu (8.7.3/8.7.3) id QAA24067; Sat, 17 Feb 1996 16:52:56 -0500 (EST) Resent-Date: Sat, 17 Feb 1996 16:52:56 -0500 (EST) Message-Id: <199602172152.NAA12631@envy.ugcs.caltech.edu> To: zsh-workers@math.gatech.edu Subject: zsh 2.6-beta13 bug report X-Mailer: MH 6.8.3 X-URL: http://www.ugcs.caltech.edu/~huyle MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <16546.824593942.1@gluttony.ugcs.caltech.edu> Date: Sat, 17 Feb 1996 13:52:22 -0800 From: Huy Le Resent-Message-ID: <"cJNb13.0.zt5.uua9n"@euclid> Resent-From: zsh-workers@math.gatech.edu X-Mailing-List: archive/latest/769 X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu zsh v. 2.6-beta13 on HP-UX A.09.01 1. The following binding doesn't work bindkey -v bindkey -a ':' execute-named-cmd when I do and then ':', the named-cmd prompt is frozen. 2. Completion bug compctl -g '*' -S '\#' -x 'n[1,\\#]' -g '*' -- a The completion on the second file is off by a character. I guess the \\ is counted as two characters in the n[1,\\#] argument instead of one. For instance, if there is a file called bozo in the current directory, the following happens: a bo which completes to: a bozo\# a bozo\# which doesn't do anything a bozo\#zbo which completes to: a bozo\#zbozo instead of a bo which completes to: a bozo\# a bozo\#bo which completes to: a bozo\#bozo - Huy