дзеркало
				https://github.com/sammy-ette/Hilbish
				synced 2025-08-10 02:52:03 +00:00 
			
		
		
		
	Порівняти коміти
	
		
			3 Коміти
		
	
	
		
			0a5a2e727e
			...
			14274a9432
		
	
	| Автор | SHA1 | Дата | |
|---|---|---|---|
| 
						 | 
					14274a9432 | ||
| 
						 | 
					d24d773e2d | ||
| 
						 | 
					021d20585d | 
							
								
								
									
										326
									
								
								api.go
									
									
									
									
									
								
							
							
						
						
									
										326
									
								
								api.go
									
									
									
									
									
								
							@ -7,10 +7,10 @@ import (
 | 
			
		||||
	"errors"
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"os"
 | 
			
		||||
//	"os/exec"
 | 
			
		||||
	"os/exec"
 | 
			
		||||
	"runtime"
 | 
			
		||||
	"strings"
 | 
			
		||||
//	"syscall"
 | 
			
		||||
	"syscall"
 | 
			
		||||
	"time"
 | 
			
		||||
 | 
			
		||||
	"hilbish/util"
 | 
			
		||||
@ -19,38 +19,28 @@ import (
 | 
			
		||||
	"github.com/arnodel/golua/lib/packagelib"
 | 
			
		||||
	"github.com/maxlandon/readline"
 | 
			
		||||
//	"github.com/blackfireio/osinfo"
 | 
			
		||||
//	"mvdan.cc/sh/v3/interp"
 | 
			
		||||
	"mvdan.cc/sh/v3/interp"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
var exports = map[string]util.LuaExport{
 | 
			
		||||
	"alias": util.LuaExport{hlalias, 2, false},
 | 
			
		||||
/*
 | 
			
		||||
	"appendPath": hlappendPath,
 | 
			
		||||
*/
 | 
			
		||||
	"complete": util.LuaExport{hlcomplete, 2, false},
 | 
			
		||||
	"cwd": util.LuaExport{hlcwd, 0, false},
 | 
			
		||||
/*
 | 
			
		||||
	"exec": hlexec,
 | 
			
		||||
*/
 | 
			
		||||
	"runnerMode": util.LuaExport{hlrunnerMode, 1, false},
 | 
			
		||||
/*
 | 
			
		||||
	"goro": hlgoro,
 | 
			
		||||
*/
 | 
			
		||||
	"highlighter": util.LuaExport{hlhighlighter, 1, false},
 | 
			
		||||
	"hinter": util.LuaExport{hlhinter, 1, false},
 | 
			
		||||
/*
 | 
			
		||||
	"multiprompt": hlmlprompt,
 | 
			
		||||
	"prependPath": hlprependPath,
 | 
			
		||||
*/
 | 
			
		||||
	"prompt": util.LuaExport{hlprompt, 1, false},
 | 
			
		||||
	"inputMode": util.LuaExport{hlinputMode, 1, false},
 | 
			
		||||
	"interval": util.LuaExport{hlinterval, 2, false},
 | 
			
		||||
	"read": util.LuaExport{hlread, 1, false},
 | 
			
		||||
/*
 | 
			
		||||
	"run": hlrun,
 | 
			
		||||
	"timeout": hltimeout,
 | 
			
		||||
	"which": hlwhich,
 | 
			
		||||
*/
 | 
			
		||||
	"alias": {hlalias, 2, false},
 | 
			
		||||
	"appendPath": {hlappendPath, 1, false},
 | 
			
		||||
	"complete": {hlcomplete, 2, false},
 | 
			
		||||
	"cwd": {hlcwd, 0, false},
 | 
			
		||||
	"exec": {hlexec, 1, false},
 | 
			
		||||
	"runnerMode": {hlrunnerMode, 1, false},
 | 
			
		||||
	"goro": {hlgoro, 1, true},
 | 
			
		||||
	"highlighter": {hlhighlighter, 1, false},
 | 
			
		||||
	"hinter": {hlhinter, 1, false},
 | 
			
		||||
	"multiprompt": {hlmultiprompt, 1, false},
 | 
			
		||||
	"prependPath": {hlprependPath, 1, false},
 | 
			
		||||
	"prompt": {hlprompt, 1, false},
 | 
			
		||||
	"inputMode": {hlinputMode, 1, false},
 | 
			
		||||
	"interval": {hlinterval, 2, false},
 | 
			
		||||
	"read": {hlread, 1, false},
 | 
			
		||||
	"run": {hlrun, 1, false},
 | 
			
		||||
	"timeout": {hltimeout, 2, false},
 | 
			
		||||
	"which": {hlwhich, 1, false},
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var greeting string
 | 
			
		||||
@ -114,21 +104,23 @@ Check out the {blue}{bold}guide{reset} command to get started.
 | 
			
		||||
	//util.Document(L, aliasesModule, "Alias inferface for Hilbish.")
 | 
			
		||||
	mod.Set(rt.StringValue("aliases"), rt.TableValue(aliasesModule))
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
	// hilbish.history table
 | 
			
		||||
	historyModule := lr.Loader(L)
 | 
			
		||||
	util.Document(L, historyModule, "History interface for Hilbish.")
 | 
			
		||||
	L.SetField(mod, "history", historyModule)
 | 
			
		||||
	historyModule := lr.Loader(rtm)
 | 
			
		||||
	//util.Document(L, historyModule, "History interface for Hilbish.")
 | 
			
		||||
	mod.Set(rt.StringValue("history"), rt.TableValue(historyModule))
 | 
			
		||||
 | 
			
		||||
	// hilbish.completion table
 | 
			
		||||
	hshcomp := L.NewTable()
 | 
			
		||||
	hshcomp := rt.NewTable()
 | 
			
		||||
 | 
			
		||||
	util.SetField(L, hshcomp, "files", L.NewFunction(luaFileComplete), "Completer for files")
 | 
			
		||||
	util.SetField(L, hshcomp, "bins", L.NewFunction(luaBinaryComplete), "Completer for executables/binaries")
 | 
			
		||||
	util.Document(L, hshcomp, "Completions interface for Hilbish.")
 | 
			
		||||
	L.SetField(mod, "completion", hshcomp)
 | 
			
		||||
	util.SetField(rtm, hshcomp, "files",
 | 
			
		||||
	rt.FunctionValue(rt.NewGoFunction(luaFileComplete, "files", 3, false)),
 | 
			
		||||
	"Completer for files")
 | 
			
		||||
	util.SetField(rtm, hshcomp, "bins",
 | 
			
		||||
	rt.FunctionValue(rt.NewGoFunction(luaBinaryComplete, "bins", 3, false)),
 | 
			
		||||
	"Completer for executables/binaries")
 | 
			
		||||
	//util.Document(L, hshcomp, "Completions interface for Hilbish.")
 | 
			
		||||
	mod.Set(rt.StringValue("completion"), rt.TableValue(hshcomp))
 | 
			
		||||
 | 
			
		||||
*/
 | 
			
		||||
	// hilbish.runner table
 | 
			
		||||
	runnerModule := runnerModeLoader(rtm)
 | 
			
		||||
	//util.Document(L, runnerModule, "Runner/exec interface for Hilbish.")
 | 
			
		||||
@ -151,51 +143,74 @@ func getenv(key, fallback string) string {
 | 
			
		||||
    return value
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
func luaFileComplete(L *lua.LState) int {
 | 
			
		||||
	query := L.CheckString(1)
 | 
			
		||||
	ctx := L.CheckString(2)
 | 
			
		||||
	fields := L.CheckTable(3)
 | 
			
		||||
 | 
			
		||||
	var fds []string
 | 
			
		||||
	fields.ForEach(func(k lua.LValue, v lua.LValue) {
 | 
			
		||||
		fds = append(fds, v.String())
 | 
			
		||||
	})
 | 
			
		||||
func luaFileComplete(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	query, ctx, fds, err := getCompleteParams(t, c)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	completions := fileComplete(query, ctx, fds)
 | 
			
		||||
	luaComps := L.NewTable()
 | 
			
		||||
	luaComps := rt.NewTable()
 | 
			
		||||
 | 
			
		||||
	for _, comp := range completions {
 | 
			
		||||
		luaComps.Append(lua.LString(comp))
 | 
			
		||||
	for i, comp := range completions {
 | 
			
		||||
		luaComps.Set(rt.IntValue(int64(i + 1)), rt.StringValue(comp))
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	L.Push(luaComps)
 | 
			
		||||
 | 
			
		||||
	return 1
 | 
			
		||||
	return c.PushingNext1(t.Runtime, rt.TableValue(luaComps)), nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func luaBinaryComplete(L *lua.LState) int {
 | 
			
		||||
	query := L.CheckString(1)
 | 
			
		||||
	ctx := L.CheckString(2)
 | 
			
		||||
	fields := L.CheckTable(3)
 | 
			
		||||
 | 
			
		||||
	var fds []string
 | 
			
		||||
	fields.ForEach(func(k lua.LValue, v lua.LValue) {
 | 
			
		||||
		fds = append(fds, v.String())
 | 
			
		||||
	})
 | 
			
		||||
func luaBinaryComplete(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	query, ctx, fds, err := getCompleteParams(t, c)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	completions, _ := binaryComplete(query, ctx, fds)
 | 
			
		||||
	luaComps := L.NewTable()
 | 
			
		||||
	luaComps := rt.NewTable()
 | 
			
		||||
 | 
			
		||||
	for _, comp := range completions {
 | 
			
		||||
		luaComps.Append(lua.LString(comp))
 | 
			
		||||
	for i, comp := range completions {
 | 
			
		||||
		luaComps.Set(rt.IntValue(int64(i + 1)), rt.StringValue(comp))
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	L.Push(luaComps)
 | 
			
		||||
 | 
			
		||||
	return 1
 | 
			
		||||
	return c.PushingNext1(t.Runtime, rt.TableValue(luaComps)), nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func getCompleteParams(t *rt.Thread, c *rt.GoCont) (string, string, []string, error) {
 | 
			
		||||
	if err := c.CheckNArgs(3); err != nil {
 | 
			
		||||
		return "", "", []string{}, err
 | 
			
		||||
	}
 | 
			
		||||
	query, err := c.StringArg(0)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return "", "", []string{}, err
 | 
			
		||||
	}
 | 
			
		||||
	ctx, err := c.StringArg(1)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return "", "", []string{}, err
 | 
			
		||||
	}
 | 
			
		||||
	fields, err := c.TableArg(2)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return "", "", []string{}, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var fds []string
 | 
			
		||||
	nextVal := rt.NilValue
 | 
			
		||||
	for {
 | 
			
		||||
		next, val, ok := fields.Next(nextVal)
 | 
			
		||||
		if next == rt.NilValue {
 | 
			
		||||
			break
 | 
			
		||||
		}
 | 
			
		||||
		nextVal = next
 | 
			
		||||
 | 
			
		||||
		valStr, ok := val.TryString()
 | 
			
		||||
		if !ok {
 | 
			
		||||
			continue
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		fds = append(fds, valStr)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return query, ctx, fds, err
 | 
			
		||||
}
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
func setVimMode(mode string) {
 | 
			
		||||
	util.SetField(l, hshMod, "vimMode", rt.StringValue(mode), "Current Vim mode of Hilbish (nil if not in Vim mode)")
 | 
			
		||||
@ -206,14 +221,19 @@ func unsetVimMode() {
 | 
			
		||||
	util.SetField(l, hshMod, "vimMode", rt.NilValue, "Current Vim mode of Hilbish (nil if not in Vim mode)")
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
// run(cmd)
 | 
			
		||||
// Runs `cmd` in Hilbish's sh interpreter.
 | 
			
		||||
// --- @param cmd string
 | 
			
		||||
func hlrun(L *lua.LState) int {
 | 
			
		||||
func hlrun(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	if err := c.Check1Arg(); err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	cmd, err := c.StringArg(0)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	var exitcode uint8
 | 
			
		||||
	cmd := L.CheckString(1)
 | 
			
		||||
	err := execCommand(cmd)
 | 
			
		||||
	err = execCommand(cmd)
 | 
			
		||||
 | 
			
		||||
	if code, ok := interp.IsExitStatus(err); ok {
 | 
			
		||||
		exitcode = code
 | 
			
		||||
@ -221,10 +241,8 @@ func hlrun(L *lua.LState) int {
 | 
			
		||||
		exitcode = 1
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	L.Push(lua.LNumber(exitcode))
 | 
			
		||||
	return 1
 | 
			
		||||
	return c.PushingNext1(t.Runtime, rt.IntValue(int64(exitcode))), nil
 | 
			
		||||
}
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
// cwd()
 | 
			
		||||
// Returns the current directory of the shell
 | 
			
		||||
@ -286,13 +304,18 @@ func hlprompt(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
// multiprompt(str)
 | 
			
		||||
// Changes the continued line prompt to `str`
 | 
			
		||||
// --- @param str string
 | 
			
		||||
/*
 | 
			
		||||
func hlmlprompt(L *lua.LState) int {
 | 
			
		||||
	multilinePrompt = L.CheckString(1)
 | 
			
		||||
 | 
			
		||||
	return 0
 | 
			
		||||
func hlmultiprompt(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	if err := c.Check1Arg(); err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	prompt, err := c.StringArg(0)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	multilinePrompt = prompt
 | 
			
		||||
 | 
			
		||||
	return c.Next(), nil
 | 
			
		||||
}
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
// alias(cmd, orig)
 | 
			
		||||
// Sets an alias of `cmd` to `orig`
 | 
			
		||||
@ -316,24 +339,39 @@ func hlalias(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	return c.Next(), nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
// appendPath(dir)
 | 
			
		||||
// Appends `dir` to $PATH
 | 
			
		||||
// --- @param dir string|table
 | 
			
		||||
func hlappendPath(L *lua.LState) int {
 | 
			
		||||
func hlappendPath(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	if err := c.Check1Arg(); err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	arg := c.Arg(0)
 | 
			
		||||
 | 
			
		||||
	// check if dir is a table or a string
 | 
			
		||||
	arg := L.Get(1)
 | 
			
		||||
	if arg.Type() == lua.LTTable {
 | 
			
		||||
		arg.(*lua.LTable).ForEach(func(k lua.LValue, v lua.LValue) {
 | 
			
		||||
			appendPath(v.String())
 | 
			
		||||
		})
 | 
			
		||||
	} else if arg.Type() == lua.LTString {
 | 
			
		||||
		appendPath(arg.String())
 | 
			
		||||
	} else {
 | 
			
		||||
		L.RaiseError("bad argument to appendPath (expected string or table, got %v)", L.Get(1).Type().String())
 | 
			
		||||
	if arg.Type() == rt.TableType {
 | 
			
		||||
		nextVal := rt.NilValue
 | 
			
		||||
		for {
 | 
			
		||||
			next, val, ok := arg.AsTable().Next(nextVal)
 | 
			
		||||
			if next == rt.NilValue {
 | 
			
		||||
				break
 | 
			
		||||
			}
 | 
			
		||||
			nextVal = next
 | 
			
		||||
 | 
			
		||||
			valStr, ok := val.TryString()
 | 
			
		||||
			if !ok {
 | 
			
		||||
				continue
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
	return 0
 | 
			
		||||
			appendPath(valStr)
 | 
			
		||||
		}
 | 
			
		||||
	} else if arg.Type() == rt.StringType {
 | 
			
		||||
		appendPath(arg.AsString())
 | 
			
		||||
	} else {
 | 
			
		||||
		return nil, errors.New("bad argument to appendPath (expected string or table, got " + arg.TypeName() + ")")
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return c.Next(), nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func appendPath(dir string) {
 | 
			
		||||
@ -349,8 +387,14 @@ func appendPath(dir string) {
 | 
			
		||||
// exec(cmd)
 | 
			
		||||
// Replaces running hilbish with `cmd`
 | 
			
		||||
// --- @param cmd string
 | 
			
		||||
func hlexec(L *lua.LState) int {
 | 
			
		||||
	cmd := L.CheckString(1)
 | 
			
		||||
func hlexec(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	if err := c.Check1Arg(); err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	cmd, err := c.StringArg(0)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	cmdArgs, _ := splitInput(cmd)
 | 
			
		||||
	if runtime.GOOS != "windows" {
 | 
			
		||||
		cmdPath, err := exec.LookPath(cmdArgs[0])
 | 
			
		||||
@ -372,55 +416,59 @@ func hlexec(L *lua.LState) int {
 | 
			
		||||
		os.Exit(0)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return 0
 | 
			
		||||
	return c.Next(), nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// goro(fn)
 | 
			
		||||
// Puts `fn` in a goroutine
 | 
			
		||||
// --- @param fn function
 | 
			
		||||
func hlgoro(L *lua.LState) int {
 | 
			
		||||
	fn := L.CheckFunction(1)
 | 
			
		||||
	argnum := L.GetTop()
 | 
			
		||||
	args := make([]lua.LValue, argnum)
 | 
			
		||||
	for i := 1; i <= argnum; i++ {
 | 
			
		||||
		args[i - 1] = L.Get(i)
 | 
			
		||||
func hlgoro(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	if err := c.Check1Arg(); err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	fn, err := c.ClosureArg(0)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// call fn
 | 
			
		||||
	go func() {
 | 
			
		||||
		if err := L.CallByParam(lua.P{
 | 
			
		||||
			Fn: fn,
 | 
			
		||||
			NRet: 0,
 | 
			
		||||
			Protect: true,
 | 
			
		||||
		}, args...); err != nil {
 | 
			
		||||
		_, err := rt.Call1(l.MainThread(), rt.FunctionValue(fn), c.Etc()...)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			fmt.Fprintln(os.Stderr, "Error in goro function:\n\n", err)
 | 
			
		||||
		}
 | 
			
		||||
	}()
 | 
			
		||||
 | 
			
		||||
	return 0
 | 
			
		||||
	return c.Next(), nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// timeout(cb, time)
 | 
			
		||||
// Runs the `cb` function after `time` in milliseconds
 | 
			
		||||
// --- @param cb function
 | 
			
		||||
// --- @param time number
 | 
			
		||||
func hltimeout(L *lua.LState) int {
 | 
			
		||||
	cb := L.CheckFunction(1)
 | 
			
		||||
	ms := L.CheckInt(2)
 | 
			
		||||
func hltimeout(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	if err := c.CheckNArgs(2); err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	cb, err := c.ClosureArg(0)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	ms, err := c.IntArg(1)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	timeout := time.Duration(ms) * time.Millisecond
 | 
			
		||||
	time.Sleep(timeout)
 | 
			
		||||
 | 
			
		||||
	if err := L.CallByParam(lua.P{
 | 
			
		||||
		Fn: cb,
 | 
			
		||||
		NRet: 0,
 | 
			
		||||
		Protect: true,
 | 
			
		||||
	}); err != nil {
 | 
			
		||||
		fmt.Fprintln(os.Stderr, "Error in goro function:\n\n", err)
 | 
			
		||||
	_, err = rt.Call1(l.MainThread(), rt.FunctionValue(cb)) 
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	return 0
 | 
			
		||||
 | 
			
		||||
	return c.Next(), nil
 | 
			
		||||
}
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
// interval(cb, time)
 | 
			
		||||
// Runs the `cb` function every `time` milliseconds
 | 
			
		||||
@ -483,12 +531,17 @@ func hlcomplete(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	return c.Next(), nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
// prependPath(dir)
 | 
			
		||||
// Prepends `dir` to $PATH
 | 
			
		||||
// --- @param dir string
 | 
			
		||||
func hlprependPath(L *lua.LState) int {
 | 
			
		||||
	dir := L.CheckString(1)
 | 
			
		||||
func hlprependPath(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	if err := c.Check1Arg(); err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	dir, err := c.StringArg(0)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	dir = strings.Replace(dir, "~", curuser.HomeDir, 1)
 | 
			
		||||
	pathenv := os.Getenv("PATH")
 | 
			
		||||
 | 
			
		||||
@ -497,24 +550,27 @@ func hlprependPath(L *lua.LState) int {
 | 
			
		||||
		os.Setenv("PATH", dir + string(os.PathListSeparator) + pathenv)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return 0
 | 
			
		||||
	return c.Next(), nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// which(binName)
 | 
			
		||||
// Searches for an executable called `binName` in the directories of $PATH
 | 
			
		||||
// --- @param binName string
 | 
			
		||||
func hlwhich(L *lua.LState) int {
 | 
			
		||||
	binName := L.CheckString(1)
 | 
			
		||||
func hlwhich(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	if err := c.Check1Arg(); err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	binName, err := c.StringArg(0)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	path, err := exec.LookPath(binName)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		l.Push(lua.LNil)
 | 
			
		||||
		return 1
 | 
			
		||||
		return c.Next(), nil
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	l.Push(lua.LString(path))
 | 
			
		||||
	return 1
 | 
			
		||||
	return c.PushingNext1(t.Runtime, rt.StringValue(path)), nil
 | 
			
		||||
}
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
// inputMode(mode)
 | 
			
		||||
// Sets the input mode for Hilbish's line reader. Accepts either emacs for vim
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										71
									
								
								rl.go
									
									
									
									
									
								
							
							
						
						
									
										71
									
								
								rl.go
									
									
									
									
									
								
							@ -5,6 +5,8 @@ import (
 | 
			
		||||
	"io"
 | 
			
		||||
	"strings"
 | 
			
		||||
 | 
			
		||||
	"hilbish/util"
 | 
			
		||||
 | 
			
		||||
	"github.com/maxlandon/readline"
 | 
			
		||||
	rt "github.com/arnodel/golua/runtime"
 | 
			
		||||
)
 | 
			
		||||
@ -292,58 +294,65 @@ func (lr *lineReader) Resize() {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// lua module
 | 
			
		||||
/*
 | 
			
		||||
func (lr *lineReader) Loader(L *lua.LState) *lua.LTable {
 | 
			
		||||
	lrLua := map[string]lua.LGFunction{
 | 
			
		||||
		"add": lr.luaAddHistory,
 | 
			
		||||
		"all": lr.luaAllHistory,
 | 
			
		||||
		"clear": lr.luaClearHistory,
 | 
			
		||||
		"get": lr.luaGetHistory,
 | 
			
		||||
		"size": lr.luaSize,
 | 
			
		||||
func (lr *lineReader) Loader(rtm *rt.Runtime) *rt.Table {
 | 
			
		||||
	lrLua := map[string]util.LuaExport{
 | 
			
		||||
		"add": {lr.luaAddHistory, 1, false},
 | 
			
		||||
		"all": {lr.luaAllHistory, 0, false},
 | 
			
		||||
		"clear": {lr.luaClearHistory, 0, false},
 | 
			
		||||
		"get": {lr.luaGetHistory, 1, false},
 | 
			
		||||
		"size": {lr.luaSize, 0, false},
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	mod := l.SetFuncs(l.NewTable(), lrLua)
 | 
			
		||||
	mod := rt.NewTable()
 | 
			
		||||
	util.SetExports(rtm, mod, lrLua)
 | 
			
		||||
 | 
			
		||||
	return mod
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (lr *lineReader) luaAddHistory(l *lua.LState) int {
 | 
			
		||||
	cmd := l.CheckString(1)
 | 
			
		||||
func (lr *lineReader) luaAddHistory(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	if err := c.Check1Arg(); err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	cmd, err := c.StringArg(0)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	lr.AddHistory(cmd)
 | 
			
		||||
 | 
			
		||||
	return 0
 | 
			
		||||
	return c.Next(), nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (lr *lineReader) luaSize(L *lua.LState) int {
 | 
			
		||||
	L.Push(lua.LNumber(fileHist.Len()))
 | 
			
		||||
 | 
			
		||||
	return 1
 | 
			
		||||
func (lr *lineReader) luaSize(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	return c.PushingNext1(t.Runtime, rt.IntValue(int64(fileHist.Len()))), nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (lr *lineReader) luaGetHistory(L *lua.LState) int {
 | 
			
		||||
	idx := L.CheckInt(1)
 | 
			
		||||
	cmd, _ := fileHist.GetLine(idx)
 | 
			
		||||
	L.Push(lua.LString(cmd))
 | 
			
		||||
 | 
			
		||||
	return 1
 | 
			
		||||
func (lr *lineReader) luaGetHistory(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	if err := c.Check1Arg(); err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	idx, err := c.IntArg(0)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
func (lr *lineReader) luaAllHistory(L *lua.LState) int {
 | 
			
		||||
	tbl := L.NewTable()
 | 
			
		||||
	cmd, _ := fileHist.GetLine(int(idx))
 | 
			
		||||
 | 
			
		||||
	return c.PushingNext1(t.Runtime, rt.StringValue(cmd)), nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (lr *lineReader) luaAllHistory(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	tbl := rt.NewTable()
 | 
			
		||||
	size := fileHist.Len()
 | 
			
		||||
 | 
			
		||||
	for i := 1; i < size; i++ {
 | 
			
		||||
		cmd, _ := fileHist.GetLine(i)
 | 
			
		||||
		tbl.Append(lua.LString(cmd))
 | 
			
		||||
		tbl.Set(rt.IntValue(int64(i)), rt.StringValue(cmd))
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	L.Push(tbl)
 | 
			
		||||
 | 
			
		||||
	return 1
 | 
			
		||||
	return c.PushingNext1(t.Runtime, rt.TableValue(tbl)), nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (lr *lineReader) luaClearHistory(l *lua.LState) int {
 | 
			
		||||
func (lr *lineReader) luaClearHistory(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
 | 
			
		||||
	fileHist.clear()
 | 
			
		||||
	return 0
 | 
			
		||||
	return c.Next(), nil
 | 
			
		||||
}
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
		Завантаження…
	
	
			
			x
			
			
		
	
		Посилання в новій задачі
	
	Block a user