fzy

terminal fuzzy finder picker

git clone https://9o.is/git/fzy.git

commit 08d1ec03152c606bf937b674d4118c1bda26ca34
parent c36ad890e026eaf4c972e6ab20835726905afe54
Author: Tianyu Geng <tgeng@google.com>
Date:   Mon,  5 Feb 2018 14:20:50 -0800

Support cursor jumping with Home and End keys

Diffstat:
Msrc/tty_interface.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/tty_interface.c b/src/tty_interface.c @@ -279,6 +279,8 @@ static const keybinding_t keybindings[] = {{"\x7f", action_del_char}, /* DEL */ {"\x1b[D", action_left}, /* LEFT */ {"\x1bOC", action_right}, /* RIGHT */ {"\x1b[C", action_right}, /* RIGHT */ + {"\x1b[1~", action_beginning}, /* HOME */ + {"\x1b[4~", action_end}, /* END */ {"\x1b[A", action_prev}, /* UP */ {"\x1bOA", action_prev}, /* UP */ {"\x1b[B", action_next}, /* DOWN */