* fix: make lua implemented hilbish interfaces documented * fix: signature link in table of contents * fix: reduce function list to match in go generated docs * fix: toc appending * docs: enable docs for hilbish.messages * feat: add description gen, and more spacing between param listing * docs: add more detailed documentation for lua modules * docs: update hilbish.messages docs * fix: add description for lua doc'd modules, remove duplicate docs * docs: add back hilbish.jobs doc * feat: generate toc for lua modules * fix: add table heading * ci: add lua docgen * docs: put dirs.old doc on 1 line
5.5 KiB
title | description | layout | menu | ||||
---|---|---|---|---|---|---|---|
Module hilbish.runner | interactive command runner customization | doc |
|
Introduction
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 acommand.not-found
hook based on what\<command>
is.\<command>: not-executable
will throw acommand.not-executable
hook.
continue
(boolean): Whether Hilbish should prompt the user for no inputnewline
(boolean): Whether a newline should be added at the end ofinput
.
Here is a simple example of a fennel runner. It falls back to shell script if fennel eval has an error.
local fennel = require 'fennel'
hilbish.runnerMode(function(input)
local ok = pcall(fennel.eval, input)
if ok then
return {
input = input
}
end
return hilbish.runner.sh(input)
end)
Functions
setMode(cb) | This is the same as the hilbish.runnerMode function. |
lua(cmd) | Evaluates cmd as Lua input. This is the same as using dofile |
sh(cmd) | Runs a command in Hilbish's shell script interpreter. |
exec(cmd, runnerName) | Executes cmd with a runner. |
set(name, runner) | Sets a runner by name. The difference between this function and |
get(name) | Get a runner by name. |
add(name, runner) | Adds a runner to the table of available runners. |
setCurrent(name) | Sets Hilbish's runner mode by name. |
getCurrent() | Returns the current runner by name. |
hilbish.runner.setMode(cb)
This is the same as the hilbish.runnerMode
function.
It takes a callback, which will be used to execute all interactive input.
In normal cases, neither callbacks should be overrided by the user,
as the higher level functions listed below this will handle it.
Parameters
function
cb
hilbish.runner.lua(cmd)
Evaluates cmd
as Lua input. This is the same as using dofile
or load
, but is appropriated for the runner interface.
Parameters
string
cmd
hilbish.runner.sh(cmd)
Runs a command in Hilbish's shell script interpreter.
This is the equivalent of using source
.
Parameters
string
cmd
hilbish.runner.getCurrent()
Returns the current runner by name.
Parameters
This function has no parameters.
hilbish.runner.add(name, runner)
Adds a runner to the table of available runners. If runner is a table, it must have the run function in it.
Parameters
name
string
Name of the runner
runner
function|table
hilbish.runner.get(name)
Get a runner by name.
Parameters
name
string
Name of the runner to retrieve.
hilbish.runner.set(name, runner)
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.
Parameters
name
string
runner
table