Ada Avery
Ada Avery
Tab complete should know about `shell-lambda` options and flags and offer completions accordingly.
When running a shell command from Emacs (e.g. `M-!`), it would be handy if the lisp splice syntax (i.e. `,`) didn't evaluate the lisp form as Common Lisp in SHCL,...
We’ve got good support for exposing lisp code to shell. Let’s bridge the other way, too! Shell commands should be exposable as lisp functions!
Stumpwm's `exec` command builds a string for `/bin/sh` to eval. Stumpwm could just load SHCL and have SHCL do the eval.
SHCL can parse the input text and then colorize it.
SHCL depends on a small C library named libshclsupport. SHCL loads it with `cffi`. That's annoying. It would be way cooler if SHCL didn't depend on a special purpose shared...
This is a completely crazy idea that almost no one actually wants, but... Tools like find and xargs take in a command to run. Normally, you have to name a...
SHCL doesn't support any sort of signal handling. It should. This will be trickier than in your typical shell. SHCL doesn't fork for subshells. Since signals are delivered to a...