aboutsummaryrefslogtreecommitdiffstats
path: root/src/lua_api.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* update install script pathsGravatar Lance Borden 2025-08-191-2/+2
|
* keep history to home dir and use .config instead of custom dotfile dirGravatar Lance Borden 2025-08-191-2/+6
|
* added ability to configure alternate shellGravatar BanceDev 2025-02-131-0/+16
|
* add api method to enable/disable inline suggestionsGravatar BanceDev 2025-02-111-0/+10
|
* updated help messagesGravatar BanceDev 2024-10-151-3/+3
|
* added exit api functionGravatar BanceDev 2024-09-271-3/+17
|
* fixed lua api exit status issueGravatar BanceDev 2024-09-231-1/+1
|
* implemented background process operatorGravatar BanceDev 2024-09-231-1/+0
|
* changed tokenizer to handle all the chaining operatorsGravatar BanceDev 2024-09-171-1/+1
|
* fixed bug in input buffer handling due to misplaced printGravatar BanceDev 2024-09-121-3/+6
|
* added e2e testing to cover basic shell functionalityGravatar BanceDev 2024-09-121-2/+4
|
* added glob function to lua APiGravatar BanceDev 2024-09-111-0/+43
|
* made it so that lua args properly reset between commandsGravatar BanceDev 2024-09-101-0/+4
|
* lua api functions for getting terminal width and heightGravatar BanceDev 2024-09-101-0/+25
|
* add aliasing to init.luaGravatar BanceDev 2024-09-091-0/+9
|
* added support for init.lua for configuring shellGravatar BanceDev 2024-09-091-6/+45
|
* added getenv and putenv to Lua APIGravatar BanceDev 2024-09-081-5/+27
| | | | fixed bug where terminal closed upon encountering Lua error
* added lua api functions for indexing historyGravatar BanceDev 2024-09-081-0/+28
|
* added support for cli args for lua scriptsGravatar BanceDev 2024-09-081-1/+11
|
* added api functions for isFile, isDirectory, isReadable, and isWriteableGravatar BanceDev 2024-09-041-63/+113
|
* history saving implementedGravatar BanceDev 2024-09-041-0/+2
|
* added exists function to lua apiGravatar BanceDev 2024-09-041-0/+42
|
* added missing lua registrationsGravatar BanceDev 2024-09-031-0/+2
|
* added cd to lua apiGravatar BanceDev 2024-09-031-0/+44
|
* added debug mode for scriptingGravatar BanceDev 2024-09-031-1/+21
|
* update lua api to table and added getcwd to apiGravatar BanceDev 2024-09-031-4/+23
|
* searches .lush/scripts for lua filesGravatar BanceDev 2024-09-021-1/+26
|
* added basic lua scriptingGravatar BanceDev 2024-09-021-0/+63
added exec function to run shell commands from lua