aboutsummaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - The premake5.lua file has been updated to include the LUA_COMPAT_BITLIB ↵Gravatar Andrew D. France 2025-07-231-14/+9
| | | | | | | compiler definition. This flag instructs the compat-5.3 submodule to build the actual bit32 library instead of a stub that throws a deprecated error. - The main function in src/lush.c is modified to explicitly load the bit32 and utf8 libraries into the global Lua state at startup using luaL_requiref. This makes them directly accessible to all scripts running in the shell, which is necessary for the test script to find and use the bit32 functions without a require() call. - Added a null check after luaL_newstate() in src/lush.c to ensure the Lua state is created successfully before its actually used.
* Re-added luaL_openlibs(L); ln:1495Gravatar Andrew D. France 2025-07-221-1/+1
|
* src/lush.c ln:1500-1508: corrected the 'luaL' typosGravatar Andrew D. France 2025-07-221-3/+3
|
* Compat53 library uses the floor function, which is part of the C math ↵Gravatar Andrew D. France 2025-07-221-1/+0
| | | | library (libm); removed the incorrect luaopen_compat53 call that was still present
* Fixed the header path for compat: preload compat modules for lua within ↵Gravatar Andrew D. France 2025-07-221-1/+22
| | | | lua-init block
* Added compat53 to init block: added .gitmodules init to install.shGravatar Andrew D. France 2025-07-221-0/+1
|
* Added compat53 support and fixed bugged non-interactive modeGravatar Andrew D. France 2025-07-141-34/+26
|
* added ability to configure alternate shellGravatar BanceDev 2025-02-133-3/+43
|
* add api method to enable/disable inline suggestionsGravatar BanceDev 2025-02-113-1/+18
|
* add globbing to command modeGravatar BanceDev 2025-02-111-1/+5
|
* added wildcard globbingGravatar BanceDev 2025-02-111-1/+74
|
* fixed --version bugGravatar BanceDev 2025-02-101-1/+1
|
* made constant for lush_lua builtin indexGravatar BanceDev 2025-02-072-2/+3
|
* added trap builtinGravatar BanceDev 2025-02-072-3/+139
|
* added command string modeGravatar BanceDev 2025-02-071-1/+33
|
* updated help messagesGravatar BanceDev 2024-10-152-5/+51
|
* added redirect/append for stdout, stderr, or bothGravatar BanceDev 2024-09-271-38/+118
|
* added exit api functionGravatar BanceDev 2024-09-273-6/+20
|
* fixed chaining execution attempting to execute operatorGravatar BanceDev 2024-09-271-1/+4
|
* fixed crash in redirect operatorGravatar BanceDev 2024-09-261-10/+9
|
* fixed semicolon chaining functionalityGravatar BanceDev 2024-09-251-14/+9
|
* fixed crash from incorrect pointer indexingGravatar BanceDev 2024-09-251-1/+1
|
* added append chaining operatorGravatar BanceDev 2024-09-251-3/+7
|
* added output redirection withGravatar BanceDev 2024-09-251-12/+52
|
* added ; chaining operatorGravatar BanceDev 2024-09-251-14/+14
|
* added || chaining operatorGravatar BanceDev 2024-09-251-2/+9
|
* fixed lua api exit status issueGravatar BanceDev 2024-09-231-1/+1
|
* fixed splitting within quoted stringGravatar BanceDev 2024-09-231-5/+10
|
* made and operator actually conditionalGravatar BanceDev 2024-09-232-17/+27
|
* fixed operator chaining to handle commands terminating with an operatorGravatar BanceDev 2024-09-231-14/+5
|
* implemented background process operatorGravatar BanceDev 2024-09-236-154/+238
|
* implemented piping into new chaining methodGravatar BanceDev 2024-09-231-10/+30
|
* fixed && chaining for builtinsGravatar BanceDev 2024-09-182-23/+31
|
* added basic && chainingGravatar BanceDev 2024-09-182-8/+73
|
* changed tokenizer to handle all the chaining operatorsGravatar BanceDev 2024-09-173-20/+78
|
* added better clarification to help menuGravatar BanceDev 2024-09-131-1/+2
|
* fixed bug in input buffer handling due to misplaced printGravatar BanceDev 2024-09-122-5/+8
|
* fixed exit status issue with non interative modeGravatar BanceDev 2024-09-121-1/+1
|
* added non interative mode for running lua scriptsGravatar BanceDev 2024-09-121-0/+27
|
* attempt to update build script to accept input into lush shellGravatar BanceDev 2024-09-121-1/+1
|
* added e2e testing to cover basic shell functionalityGravatar BanceDev 2024-09-123-4/+6
|
* updated buffer size for date to account for compiler warningGravatar BanceDev 2024-09-111-5/+3
|
* added glob function to lua APiGravatar BanceDev 2024-09-111-0/+43
|
* initialized OLDPWD properlyGravatar BanceDev 2024-09-111-1/+4
|
* added HOSTNAME envarGravatar BanceDev 2024-09-111-0/+5
|
* added OLDPWD environment var and cd - to go to OLDPWDGravatar BanceDev 2024-09-111-1/+10
|
* added date format specifier for promptGravatar BanceDev 2024-09-111-5/+18
|
* fixed off-by-one error with prompt wrappingGravatar BanceDev 2024-09-111-11/+89
|
* added tab to accept inline autocompleteGravatar BanceDev 2024-09-101-9/+85
|
* basic current directory suggestionsGravatar BanceDev 2024-09-101-9/+146
|