Hacker News new | ask | show | jobs
by wh33zle 2001 days ago
This looks cool!

I personally use fzf [0] for a similar functionality. It brings fuzzy-search to a lot of aspects of the shell, like reverse search but also autocompletion of `kill` for example.

[0]: https://github.com/junegunn/fzf

3 comments

Same here. With fzf, you don't search - you find. One of my most powerful bash aliases is

alias fzubl='fzf -m | xargs subl'

fzf for the win. It’s such a boost of productivity. Everyone who spends significant amount of times in the shell should try it.
I was about to comment that this kinda looks like fzf + ncurses.