From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1697 invoked by alias); 15 Dec 2014 01:35:29 -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: 19533 Received: (qmail 8498 invoked from network); 15 Dec 2014 01:35:27 -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=-2.6 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,HTML_MESSAGE,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:content-type; bh=mqGqdh4QIq1+VhBPS5tA5AbZ+QCJC4LiJ7TUcpIJZ1s=; b=kqUBgBmIDIrkHldXsTzBQE/PXZS8sWtotqWU+wEU5ceUvp1ULzNv72SyOED8VqGp5t 5iTIC82foaiMEXoHBRjJyrgdwVbszLQ+3IpBi810bmT4ILLJKolUDo3ZxsWkN4I9wrWC aQlTqijth9YT1dQPm0Y6+HuCgcSDZ9zMgxIqD6h9KWnYUCPEqBop/05OxG6uR48Xm7FE hI5ZjMJnV5UAdJS9tivhYVVggEuUuEUTGDUx85VQNzSNe9Py9IH54daUzCzFydj8iMod VNDoZrd5DI+ORkmdGm1axKxmAQq6OB5LcK+nbyDRnjlyelzgv8PzHAlFovwm0bMwfNgg hvlA== MIME-Version: 1.0 X-Received: by 10.194.188.39 with SMTP id fx7mr45792078wjc.113.1418607326137; Sun, 14 Dec 2014 17:35:26 -0800 (PST) Sender: rocky.bernstein@gmail.com Date: Sun, 14 Dec 2014 20:35:26 -0500 X-Google-Sender-Auth: ToUhVX7PEe7ZzXfKgHFnG8Thtnk Message-ID: Subject: How to get compadd to not sort words? From: Rocky Bernstein To: zsh-users@zsh.org Content-Type: multipart/alternative; boundary=047d7bb04002c01413050a3741d5 --047d7bb04002c01413050a3741d5 Content-Type: text/plain; charset=UTF-8 Hi - I've been working on beefing up command completion in the zsh debugger zshdb. For example, if I enter compadd -- 1 2 -1 -2 -3 0 The completions come out in the order: -3 -2 -1 0 1 2 But what I really want is the order I gave. (The most frequent "up or down" command has value 1; the last useful is "up 0" which doesn't do anything.) How can I tell compadd not to sort the completions? Thanks. --047d7bb04002c01413050a3741d5--