Remix.run Logo
Show HN: Intellisense style autocompletions inside of Bash(github.com)
2 points by hazkoulia 10 hours ago

I've been working on my Bash plugin called flyline for a few months now and thought I'd show my latest feature: popup Intellisense style autocompletions.

The completions are generated using Bash's existing completion framework (commonly scop/bash-completion or your own completion scripts). And if you don't have a completion script setup, flyline will try to synthesize one on the fly () using man pages or --help output!

This is similar to https://github.com/microsoft/inshellisense but inshellisense only works for a hardcoded list of completions specifications and runs in a different process as Bash.

Flyline has a bunch of other features, so if you're interested you can check it out here: https://github.com/HalFrgrd/flyline. Thanks!