interactive command runner customization
The runner interface contains functions that allow the user to change how Hilbish interprets interactive input. Users can add and change the default runner for interactive input to any language or script of their choosing. A good example is using it to write command in Fennel.
Runners are functions that evaluate user input. The default runners in Hilbish can run shell script and Lua code.
A runner is passed the input and has to return a table with these values.
All are not required, only the useful ones the runner needs to return.
(So if there isn’t an error, just omit err
.)
exitCode
(number): Exit code of the commandinput
(string): The text input of the user. This is used by Hilbish to append extra input, in case
more is requested.err
(string): A string that represents an error from the runner.
This should only be set when, for example, there is a syntax error.
It can be set to a few special values for Hilbish to throw the right
hooks and have a better looking message.\<command>: not-found
will throw a command.not-found
hook
based on what \<command>
is.\<command>: not-executable
will throw a command.not-executable
hook.continue
(boolean): Whether Hilbish should prompt the user for no inputnewline
(boolean): Whether a newline should be added at the end of input
.Here is a simple example of a fennel runner. It falls back to shell script if fennel eval has an error.
1local fennel = require 'fennel'
2
3hilbish.runnerMode(function(input)
4 local ok = pcall(fennel.eval, input)
5 if ok then
6 return {
7 input = input
8 }
9 end
10
11 return hilbish.runner.sh(input)
12end)
lua(cmd) | Evaluates cmd as Lua input. This is the same as using dofile |
sh() | nil |
setMode(mode) | NOTE: This function is deprecated and will be removed in 3.0 |
setCurrent(name) | Sets Hilbish’s runner mode by name. |
set(name, runner) | Sets a runner by name. The difference between this function and |
run(input, priv) | Runs input with the currently set Hilbish runner. |
getCurrent() | Returns the current runner by name. |
get(name) | Get a runner by name. |
exec(cmd, runnerName) | Executes cmd with a runner. |
add(name, runner) | Adds a runner to the table of available runners. |
Evaluates cmd
as Lua input. This is the same as using dofile
or load
, but is appropriated for the runner interface.
string
cmd
Adds a runner to the table of available runners. If runner is a table, it must have the run function in it.
name
string
Name of the runner
runner
function|table
Executes cmd
with a runner.
If runnerName
is not specified, it uses the default Hilbish runner.
cmd
string
runnerName
string?
Returns the current runner by name.
This function has no parameters.
Runs input
with the currently set Hilbish runner.
This method is how Hilbish executes commands.
priv
is an optional boolean used to state if the input should be saved to history.
input
string
priv
bool
Sets a runner by name. The difference between this function and add, is set will not check if the named runner exists. The runner table must have the run function in it.
name
string
runner
table
NOTE: This function is deprecated and will be removed in 3.0
Use hilbish.runner.setCurrent
instead.
This is the same as the hilbish.runnerMode
function.
It takes a callback, which will be used to execute all interactive input.
Or a string which names the runner mode to use.
mode
string|function
Want to help improve this page? Create an issue.