A terminal input asker.
Go to file
Bruce Hill 2732a1e5eb Improved cycling with ctrl-p/ctrl-n and better rendering of highlighted
partial matches (with grouping to greedily maximize longest highlighted
substrings)
2019-06-05 16:24:08 -07:00
ask.1 Added manpage 2019-06-04 20:26:53 -07:00
ask.c Improved cycling with ctrl-p/ctrl-n and better rendering of highlighted 2019-06-05 16:24:08 -07:00
bterm.h Initial commit 2019-06-04 19:27:54 -07:00
Makefile Initial commit 2019-06-04 19:27:54 -07:00
README.md Initial commit 2019-06-04 19:27:54 -07:00

ask - a simple command line asker

ask is a simple command line tool to get user input. ask is less janky than read, more compact than fzf, and less bloated than readline-based tools. ask supports most of the typical line editing functionality (e.g. arrow keys, backspace, Ctrl-U) and can be used to perform fuzzy matching or basic user input all on a single line of terminal space. Like fuzzy find tools, ask plays nicely with unix pipelines, but it's a bit more visually compact. ask's functionality overlaps with fuzzy finders, but if you want to see a full list of things you're filtering through, use fzy or fzf instead of ask.

Usage

Here's a simple program to move a file from the current directory:

#!/bin/sh
file="`ls | ask "Pick a file: "`"
mv "$file" "`ask "Move $file to: "`"

License

ask is released under the MIT License. See LICENSE for details.