2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-05 05:03:23 +00:00

style: add spaces between binary ops and rename appendpath function to be camelCase

This commit is contained in:
sammy 2021-04-28 18:35:04 -04:00
parent 345ff65da8
commit d551d0f2ab
No known key found for this signature in database
GPG Key ID: 50EE40A2809851F5

4
lua.go

@ -27,7 +27,7 @@ func LuaInit(confpath string) {
l.SetGlobal("prompt", l.NewFunction(hshprompt))
l.SetGlobal("multiprompt", l.NewFunction(hshmlprompt))
l.SetGlobal("alias", l.NewFunction(hshalias))
l.SetGlobal("appendpath", l.NewFunction(hsappendpath))
l.SetGlobal("appendPath", l.NewFunction(hshappendPath))
// Add fs module to Lua
l.PreloadModule("fs", lfs.Loader)
@ -101,7 +101,7 @@ func hshalias(L *lua.LState) int {
return 1
}
func hsappendpath(L *lua.LState) int {
func hshappendPath(L *lua.LState) int {
path := L.ToString(1)
os.Setenv("PATH", os.Getenv("PATH") + ":" + path)