Go to file
TorchedSammy 6653fa2e03
feat: add new readline lib
this is an almost 100% working readline implementation
in go, will add tab completion in another commit
2021-12-06 20:48:16 -04:00
.github ci: set fetch depth to 0 2021-05-20 18:48:16 -04:00
assets docs: slight refactor of the readme 2021-10-12 16:01:17 -04:00
cmd/docgen feat: add terminal package 2021-10-17 16:10:57 -04:00
docs docs: add docs for new functions 2021-11-22 22:04:30 -05:00
gallery docs: slight refactor of the readme 2021-10-12 16:01:17 -04:00
golibs feat(bait): add catchOnce function 2021-12-04 17:59:19 -04:00
libs style: dont redeclare function param, just assign 2021-12-04 17:56:45 -04:00
util fix: only add __docProp metatable from SetField function 2021-11-22 19:19:36 -05:00
.gitignore feat: add docgen program, document almost all hilbish functions 2021-10-16 10:21:05 -04:00
.gitmodules fix: add back inspect 2021-10-17 18:51:44 -04:00
.hilbishrc.lua fix: use new way to get username in default config 2021-05-16 17:40:55 -04:00
CHANGELOG.md chore: make changelogs and bump for 0.7.1 2021-11-22 22:54:20 -05:00
CONTRIBUTING.md docs: change urls to use new org name 2021-10-30 20:03:59 -04:00
LICENSE Initial commit 2021-03-19 10:26:58 -04:00
Makefile build: add docs folder to makefile 2021-10-16 15:33:22 -04:00
README.md docs: just remove the vertical split 2021-10-21 22:41:48 -04:00
go.mod feat: add new readline lib 2021-12-06 20:48:16 -04:00
go.sum feat: add new readline lib 2021-12-06 20:48:16 -04:00
hilbish.go refactor: dont export functions and types 2021-12-06 17:21:31 -04:00
lua.go refactor: dont export functions and types 2021-12-06 17:21:31 -04:00
main.go refactor: dont export functions and types 2021-12-06 17:21:31 -04:00
preload.lua chore: rename f to fname in subdoc map (doesnt redefine f) 2021-12-04 17:53:34 -04:00
rl.go feat: add new readline lib 2021-12-06 20:48:16 -04:00
rl_hilbiline.go feat: add new readline lib 2021-12-06 20:48:16 -04:00
rl_readline-go.go feat: add new readline lib 2021-12-06 20:48:16 -04:00
shell.go refactor: dont export functions and types 2021-12-06 17:21:31 -04:00
shell.nix feat: adds shell.nix (#26) 2021-04-18 15:51:25 +00:00
vars.go chore: make changelogs and bump for 0.7.1 2021-11-22 22:54:20 -05:00
vars_linux.go feat: use dataDir in requirePaths 2021-10-17 23:14:18 -04:00
vars_windows.go fix: add commonRequirePaths and linuxUserPaths to avoid repetition with custom require paths 2021-10-17 16:27:14 -04:00

README.md




🌺 The flower shell. A comfy and nice little shell for Lua users and fans!

GitHub commit activity GitHub commits since latest release (by date) GitHub contributors
help wanted GitHub license Discord

Hilbish is a new, Unix-like shell which uses Lua as its configuration language. It's decently fast for interactive use and includes a bunch of utility functions and features to make your life in a terminal easier.

Screenshots





Installation

NOTE: Hilbish is currently only officially supported and tested on Linux

Prebuilt binaries

Binaries are provided for the latest commit.

Note that these use Hilbiline, not readline, and may be missing functionality (moving the cursor, proper unicode support and backspace working properly)

Click on the checkmark (or x) near the commit hash, then details for your platform


Then click on the artifacts drop down, and download artifact for your platform, like what is highlighted in the screenshot.


AUR

AUR maintainer
Arch Linux users can install Hilbish from the AUR with the following command:

yay -S hilbish

Or from the latest master commit with:

yay -S hilbish-git

Nixpkgs

Nix/NixOS users can install Hilbish from the central repository, nixpkgs, through the usual ways.

If you're new to nix you should probably read up on how to do that here.

Manual Build

Prerequisites

On Fedora or other RPM based distros, readline can be installed with:

sudo dnf install readline-devel

On Debian/Ubuntu and distros based on them, it can be installed with:

sudo apt install libreadline-dev

On Arch Linux, it can be installed with:

sudo pacman -S readline

Build

First, clone Hilbish:

git clone --recursive https://github.com/Rosettea/Hilbish
cd Hilbish
go get -d ./...

To build, run:

make dev

Or, if you want a stable branch, run these commands:

git checkout $(git describe --tags `git rev-list --tags --max-count=1`)
make build

After you did all that, run sudo make install to install Hilbish globally.

Contributing

Any kind of contributions to Hilbish are welcome! Read CONTRIBUTING.md before getting started.

Thanks to everyone below who's contributed!

Made with contributors-img.

License

Hilbish is licensed under the MIT license! Read the license here for more info.

Images in the assets folder are under CC-BY-SA 4.0