mirror of
https://github.com/Hilbis/Hilbish
synced 2025-04-04 04:33:23 +00:00
* 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
1.9 KiB
1.9 KiB
title | description | layout | menu | ||||
---|---|---|---|---|---|---|---|
Module dirs | internal directory management | doc |
|
Introduction
The dirs module defines a small set of functions to store and manage directories.
Functions
recent(idx) | Get entry from recent directories list based on index. |
pop(num) | Remove the specified amount of dirs from the recent directories list. |
peak(num) | Look at num amount of recent directories, starting from the latest. |
push(dir) | Add dir to the recent directories list. |
setOld(d) | Sets the old directory string. |
dirs.peak(num)
Look at num
amount of recent directories, starting from the latest.
This returns a table of recent directories, up to the num
amount.
Parameters
num
number
dirs.pop(num)
Remove the specified amount of dirs from the recent directories list.
Parameters
num
number