2022-12-13 19:14:48 +00:00
|
|
|
---
|
|
|
|
title: Runner Mode
|
|
|
|
description: Customize the interactive script/command runner.
|
|
|
|
layout: doc
|
|
|
|
menu:
|
|
|
|
docs:
|
|
|
|
parent: "Features"
|
|
|
|
---
|
|
|
|
|
|
|
|
Hilbish allows you to change how interactive text can be interpreted.
|
|
|
|
This is mainly due to the fact that the default method Hilbish uses
|
|
|
|
is that it runs Lua first and then falls back to shell script.
|
|
|
|
|
|
|
|
In some cases, someone might want to switch to just shell script to avoid
|
|
|
|
it while interactive but still have a Lua config, or go full Lua to use
|
|
|
|
Hilbish as a REPL. This also allows users to add alternative languages,
|
|
|
|
instead of either like Fennel.
|
2023-04-14 04:40:41 +00:00
|
|
|
|
|
|
|
Runner mode can also be used to handle specific kinds of input before
|
|
|
|
evaluating like normal, which is how [Link.hsh](https://github.com/TorchedSammy/Link.hsh)
|
|
|
|
handles links.
|