docs: [ci] generate new docs

windows-fixes
TorchedSammy 2022-03-02 02:01:22 +00:00 committed by GitHub Actions
parent 065d752b82
commit b3981b5a4e
2 changed files with 5 additions and 0 deletions

View File

@ -14,6 +14,8 @@ exec(cmd) > Replaces running hilbish with `cmd`
goro(fn) > Puts `fn` in a goroutine
inputMode(mode) > Sets the input mode for Hilbish's line reader. Accepts either emacs for vim
interval(cb, time) > Runs the `cb` function every `time` milliseconds
multiprompt(str) > Changes the continued line prompt to `str`

View File

@ -29,6 +29,9 @@ function hilbish.exec(cmd) end
--- @param fn function
function hilbish.goroutine(fn) end
--- Sets the input mode for Hilbish's line reader. Accepts either emacs for vim
function hilbish.inputMode() end
--- Runs the `cb` function every `time` milliseconds
--- @param cb function
--- @param time number