From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10962 invoked by alias); 26 May 2016 15:50:54 -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: 21593 Received: (qmail 16926 invoked from network); 26 May 2016 15:50:53 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) 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.1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to; bh=1sf/HnI2fggRC61Xh6y7h9wX+5tRw2YEHqmoL0kW84w=; b=uzzx9QSZxBOQLB59P7hwEqOAObxWALmD21apR+cVPoqcCoN+HzSQiWxIIyp2aRdLcO oG/yAFyhterZL3+Quo+DOC5GGXYlwOfeS5gNqaSCRzJPPGqYmUFUPOvgWfQXzS3E3Hg6 DL/+zq3R9Ysk2naA7AJn1E1gqPEYSjhmtrDeKlAaO3Ai/tEzAPzT7cCnmAJ4pWaUXLUz kjZHRB+UIR9LfOmOS1yK0dHVrj8N1O4OooSsYBEjFOeb7NObOgjGC7T+hax8xrzrgw/c I1yvwuu8LIK8Lqyg6rNxLvXkMfsMPfugkrwLY34I1IZxf5Bja6BiKEDhvfAXLO1sMJw/ sNHg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=1sf/HnI2fggRC61Xh6y7h9wX+5tRw2YEHqmoL0kW84w=; b=Q1luVp7ny9Xnur1E+jSM5+UoX38WDRd2DLk22w7nOi4B9a9zp4HWwBfM7MvYb3DUy4 SNzfyhICIe1/k40XS1v/9nN7WAQzsC+jYiG5h5wH0m+hoHOuqr/Y/cQ5Lgd2dZQI7Llm hKaErho303WncgWzBLJYOUiChzyDSle2g2j1qgFsTqlUXm+rl/l0PtoOwEpTMIK6U+uT QeC4SJ+0E79lZ/Rz6yRwdPm8jNb0iH1mz04fzfS5TeIXWJ2fYMz7KlfeFmVLLnhAUv1z Yabj4oMjxEI2tNJbu5xNg20VxDXP3wg8pBb/mbRZRQRMFftnBZPhJK9+tC6/WOANwfU0 BBxQ== X-Gm-Message-State: ALyK8tLAWT6ye/oPDamFpNXdhesItCHDkn5105Oz5+G9JbOhJyz09E/Op1/Isv0u/K0yxigbfdb6lJC4prBJ+Q== X-Received: by 10.112.154.5 with SMTP id vk5mr3269555lbb.126.1464277848614; Thu, 26 May 2016 08:50:48 -0700 (PDT) MIME-Version: 1.0 From: Sebastian Gniazdowski Date: Thu, 26 May 2016 17:50:29 +0200 Message-ID: Subject: zsh-select a selecta, sentaku like tool To: Zsh Users Content-Type: text/plain; charset=UTF-8 Hello Zsh provides: - patterns that allow multi-term searching - curses library - approximate matching I've decided to make a tool similar to selecta and sentaku, also to fzf. The main difference for the first two is that zsh-select uses curses library. This is a stable solution, terminal is well tracked and managed. For fzf, the main difference is that zsh-select uses approximate matching instead of fuzzy matching. Pressing Ctrl-F will allow 1 or 2 errors in what's typed. Video: https://asciinema.org/a/46955 Project page: https://github.com/psprint/zsh-select The file "zsh-select" can be copied to any */bin directory. Zsh will serve as say ruby, and zsh-select will be a regular program available in system. Best regards, Sebastian Gniazdowski