From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17659 invoked by alias); 10 Jan 2016 07:32:43 -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: 21139 Received: (qmail 1831 invoked from network); 10 Jan 2016 07:32:42 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, T_DKIM_INVALID autolearn=ham autolearn_force=no version=3.4.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; bh=KTFx7B1JNkvQPR6HG9XGxXRK0BL9Db+jJlpKUlmzJOQ=; b=SqzD4bA8fg8mqE75NVxTYwAhZLAsYPn6soOOQz6+qH9nNiAaovBG01sF+gx3OTtnSu 0wCAmHJaodFXggprCtzXMjetiIxBsDFBdzIHbrgyVJmEHAEIh9a2/T5lXdN9Sz06g2hz ruRCYKhieJsmBZZ5vccBKx/vPbvkC5BOdo4Jvk85XBS5nOpdUm1Hcj7R+2c1pdUQ6GIf 4X1kHVNUCunfU9rtylA70NDxq/DjDmWE6ltIP8IU1sKTWFwxmg4PTxAJlK8iEqijZ0rR dKIF7x20/+ujkO/dIqc8r3TDfEaUzQiyPWw52aG9ASHdNXijN+k9byulJnXgNKkSDRBA GrIQ== X-Received: by 10.25.23.86 with SMTP id n83mr22149711lfi.66.1452411159254; Sat, 09 Jan 2016 23:32:39 -0800 (PST) MIME-Version: 1.0 In-Reply-To: References: <20160108093313.GA16910@linux.vnet.ibm.com> <160109155417.ZM4367@torch.brasslantern.com> From: Sebastian Gniazdowski Date: Sun, 10 Jan 2016 08:32:19 +0100 Message-ID: Subject: Re: Announcement of Zsh Command Architect v1.0 To: Mikael Magnusson Cc: Bart Schaefer , Zsh Users Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hello I've added setopt before history setup: setopt hist_lex_words HISTSIZE=3D20000 SAVEHIST=3D20000 HISTFILE=3D~/.zhistory and still Alt-/ (now bound by myself not by compinit) only completes the "_" delimeted word. However, the other word is now displayed by print -lr "${historywords[@]}" | fgrep Voice: https://asciinema.org/a/03x7dhxwu9ona61kso5rlgo8z The two words are: The_Voice_of_Poland_VI_Krzysztof_Iwaneczko_Writings_On_The_Wall_Fina.mp4 The\ Voice\ of\ Poland\ VI\ =E2=80=93\ Marta\ Moszczy=C5=84ska\ =E2=80=93\ = =E2=80=9ESail=E2=80=9D\ =E2=80=93\ Live-h9KgwUAlCjE.mkv maybe one can reproduce? Code that I use to setup the functionality: bindkey "^[/" _history-complete-older zstyle ':completion:*:history-words' remove-all-dups true zstyle ':completion:*' range 50000:2000 Best regards, Sebastian Gniazdowski