From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5196 invoked by alias); 7 Jun 2011 06:11:55 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 16085 Received: (qmail 23260 invoked from network); 7 Jun 2011 06:11:53 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham version=3.3.1 Received-SPF: pass (ns1.primenet.com.au: SPF record at spf01.biglobe.ne.jp designates 133.205.19.70 as permitted sender) X-Biglobe-Sender: Mime-Version: 1.0 X-Mailer: QUALCOMM MacOS X Eudora Version 6.2J rev3.3 Message-Id: In-Reply-To: <20110606223321.GA3047@solfire> References: <20110602191951.566gmx1@mp009.gmx.net> <20110606223321.GA3047@solfire> Date: Tue, 7 Jun 2011 14:12:23 +0900 To: zsh-users@zsh.org From: "Jun T." Subject: Re: Completion question Content-Type: text/plain; charset="us-ascii" At 0:33 AM +0200 11.6.7, meino.cramer@gmx.de wrote: >Is it possible to configure zsh to only take the string from the >beginning up to the position of the cursor into account for the >completion processing ? Try adding the following line into your .zshrc: bindkey '^I' expand-or-complete-prefix (another possibiliy is to use the _prefix completer with the complete_in_word option, but using expand-or-complete-prefix would be the simplest one.)