From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12382 invoked by alias); 27 May 2013 16:46:12 -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: 17815 Received: (qmail 21205 invoked from network); 27 May 2013 16:46:08 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.6 required=5.0 tests=BAYES_00,MISSING_HEADERS, RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 Received-SPF: none (ns1.primenet.com.au: domain at gnufish.net does not designate permitted sender hosts) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:cc :content-type:x-gm-message-state; bh=d/U2D34vowTGUKlrVZghGCyYrPGQaCDNXoYNnR89nHs=; b=K4Djq7EgAufPzl+E8vO6/q8SiKgZV1ETbpHZmmcacFV8yeCJ236fMB+XoCZO4hmPOO x9MTvCcczk7A2sNQ6h4q8x96PwIXWtPVPAaHKXKbZ4gEV7+xb/d0izASfozD3MIB3Yye /5Qc8VNpmj9tUTMfQe1A2Ks+XInEf0jMIxoYB7zlFrUunHImUHRgSHb5t6hhA78fT5ZT mP7weBvGpDZxzf7hV3vib0u01zPxouF9jG20hU4DDPSjBKQ2SV4jW0cL/9Kk+5rVQmLm zC1K/nc9DVnM7OypSYEhsndRqI4QTQMehtwnoX7OkhYoODMbGm5pMJ63rvNcAr5pz4O0 3SJA== X-Received: by 10.229.133.65 with SMTP id e1mr11048107qct.105.1369673158609; Mon, 27 May 2013 09:45:58 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: From: Mario Signorino Date: Mon, 27 May 2013 18:45:38 +0200 Message-ID: Subject: Re: How to capture the tab completion result? Cc: Zsh Users Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQmDT7Ie3KHOj3iiVzp8pJAgilGanG4TiCXJoI4Bqt2eUf54zyPJDxWRUwJHp05TI71BnCOb On Mon, May 27, 2013 at 1:10 AM, Bart Schaefer wrote: > > I want is to surround the result of the tab-completion with a special > > not-printable chars. > This is not going to be straightforward, but have a look at Test/comptest > in the sources, which does a similar thing. It forces completion listings Hi! That's exactly what I needed. Now... zstyle ":completion:*:descriptions" format "\033[H%d" Is it also possible to enable the interpretation of backslash escapes? For example I added a "\033[H" in the above line. I tried, but... no luck. Tnx Mario