From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27979 invoked from network); 28 Apr 2003 13:19:36 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 28 Apr 2003 13:19:36 -0000 Received: (qmail 29392 invoked by alias); 28 Apr 2003 13:19:16 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 6056 Received: (qmail 29384 invoked from network); 28 Apr 2003 13:19:16 -0000 Received: from localhost (HELO sunsite.dk) (127.0.0.1) by localhost with SMTP; 28 Apr 2003 13:19:16 -0000 X-MessageWall-Score: 0 (sunsite.dk) Received: from [195.167.170.152] by sunsite.dk (MessageWall 1.0.8) with SMTP; 28 Apr 2003 13:19:16 -0000 Received: from zefram by bowl.fysh.org with local (Exim 3.35 #1 (Debian)) id 19A8XL-0006Dn-00 for ; Mon, 28 Apr 2003 14:19:15 +0100 Date: Mon, 28 Apr 2003 14:19:15 +0100 To: zsh-users@sunsite.dk Subject: Re: CHECK_JOBS for suspended jobs only? Message-ID: <20030428131915.GD21185@fysh.org> References: <20030428130910.GA1616@s.chello.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030428130910.GA1616@s.chello.no> User-Agent: Mutt/1.3.28i From: Zefram Haakon Riiser wrote: >Also, I have a completly unrelated question which is too silly to >warrant its own posting. :-) If I type "|" after expanding a name >with the completion system, the "|" is inserted to the /left/ of the >cursor instead of /under/ the cursor. This doesn't break anything >because the completion system inserts a space after the completed >word, but it feels a bit weird so I had to ask why this happens. This is suffix removal. The completion system added a space after the completed name in case you wanted to type another command argument next, but instead you typed a "|", so you obviously didn't need the space so it removed it before adding the "|". Suffix removal is more useful in some other cases, such as the removable "/" after completing a directory name or the removable "}" after completing a variable name inside "${". -zefram