mirror of https://github.com/Hilbis/Hilbish
Compare commits
5 Commits
7b0b06d9bf
...
17e12c8c2a
Author | SHA1 | Date |
---|---|---|
sammy | 17e12c8c2a | |
sammy | bdc8c770e6 | |
sammy | 08c56a54ca | |
sammy | 428db24831 | |
Devin Singh | 94f0ccf9f6 |
6
lua.go
6
lua.go
|
@ -2,10 +2,10 @@ package main
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
lfs "hilbish/golibs/fs"
|
||||
cmds "hilbish/golibs/commander"
|
||||
hooks "hilbish/golibs/bait"
|
||||
cmds "hilbish/golibs/commander"
|
||||
lfs "hilbish/golibs/fs"
|
||||
"os"
|
||||
|
||||
"github.com/yuin/gopher-lua"
|
||||
)
|
||||
|
|
47
main.go
47
main.go
|
@ -2,11 +2,12 @@ package main
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"os/user"
|
||||
"os/signal"
|
||||
"strings"
|
||||
"io"
|
||||
"os"
|
||||
"os/signal"
|
||||
"os/user"
|
||||
"strings"
|
||||
|
||||
hooks "hilbish/golibs/bait"
|
||||
|
||||
"github.com/akamensky/argparse"
|
||||
|
@ -16,18 +17,21 @@ import (
|
|||
)
|
||||
|
||||
const version = "0.4.0-dev.2+hilbiline"
|
||||
var l *lua.LState
|
||||
// User's prompt, this will get set when lua side is initialized
|
||||
var prompt string
|
||||
var multilinePrompt = "> "
|
||||
|
||||
// Map of builtin/custom commands defined in the commander lua module
|
||||
var commands = map[string]bool{}
|
||||
// Command aliases
|
||||
var aliases = map[string]string{}
|
||||
var bait hooks.Bait
|
||||
var homedir string
|
||||
var running bool
|
||||
var (
|
||||
l *lua.LState
|
||||
|
||||
// User's prompt, this will get set when lua side is initialized
|
||||
prompt string
|
||||
multilinePrompt = "> "
|
||||
|
||||
commands = map[string]bool{}
|
||||
aliases = map[string]string{}
|
||||
|
||||
bait hooks.Bait
|
||||
homedir string
|
||||
running bool
|
||||
)
|
||||
|
||||
func main() {
|
||||
homedir, _ = os.UserHomeDir()
|
||||
|
@ -69,7 +73,9 @@ func main() {
|
|||
}
|
||||
|
||||
// Set $SHELL if the user wants to
|
||||
if *setshflag { os.Setenv("SHELL", os.Args[0]) }
|
||||
if *setshflag {
|
||||
os.Setenv("SHELL", os.Args[0])
|
||||
}
|
||||
|
||||
// If user's config doesn't exixt,
|
||||
if _, err := os.Stat(defaultconfpath); os.IsNotExist(err) {
|
||||
|
@ -125,14 +131,18 @@ func main() {
|
|||
for {
|
||||
input, err = ContinuePrompt(strings.TrimSuffix(input, "\\"))
|
||||
|
||||
if err != nil || !strings.HasSuffix(input, "\\") { break }
|
||||
if err != nil || !strings.HasSuffix(input, "\\") {
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
running = true
|
||||
RunInput(input)
|
||||
|
||||
termwidth, _, err := term.GetSize(0)
|
||||
if err != nil { continue }
|
||||
if err != nil {
|
||||
continue
|
||||
}
|
||||
fmt.Printf("\u001b[7m∆\u001b[0m" + strings.Repeat(" ", termwidth-1) + "\r")
|
||||
}
|
||||
}
|
||||
|
@ -188,4 +198,3 @@ func HandleSignals() {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
21
shell.go
21
shell.go
|
@ -1,18 +1,17 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"bufio"
|
||||
"context"
|
||||
"fmt"
|
||||
"io"
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
"github.com/yuin/gopher-lua"
|
||||
"layeh.com/gopher-luar"
|
||||
"mvdan.cc/sh/v3/interp"
|
||||
"mvdan.cc/sh/v3/syntax"
|
||||
|
||||
)
|
||||
|
||||
func RunInput(input string) {
|
||||
|
@ -31,7 +30,9 @@ func RunInput(input string) {
|
|||
|
||||
// If alias was found, use command alias
|
||||
if aliases[cmdArgs[0]] != "" {
|
||||
cmdString = aliases[cmdArgs[0]] + strings.Trim(cmdString, cmdArgs[0])
|
||||
alias := aliases[cmdArgs[0]]
|
||||
cmdString = alias + strings.Trim(cmdString, cmdArgs[0])
|
||||
cmdArgs[0] = alias
|
||||
}
|
||||
|
||||
// If command is defined in Lua then run it
|
||||
|
@ -49,7 +50,9 @@ func RunInput(input string) {
|
|||
fmt.Fprintln(os.Stderr,
|
||||
"Error in command:\n\n"+err.Error())
|
||||
}
|
||||
if cmdArgs[0] != "exit" { HandleHistory(cmdString) }
|
||||
if cmdArgs[0] != "exit" {
|
||||
HandleHistory(cmdString)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -60,7 +63,9 @@ func RunInput(input string) {
|
|||
if syntax.IsIncomplete(err) {
|
||||
for {
|
||||
cmdString, err = ContinuePrompt(strings.TrimSuffix(cmdString, "\\"))
|
||||
if err != nil { break }
|
||||
if err != nil {
|
||||
break
|
||||
}
|
||||
err = execCommand(cmdString)
|
||||
if syntax.IsIncomplete(err) || strings.HasSuffix(input, "\\") {
|
||||
continue
|
||||
|
@ -75,7 +80,9 @@ func RunInput(input string) {
|
|||
} else {
|
||||
if code, ok := interp.IsExitStatus(err); ok {
|
||||
bait.Em.Emit("command.exit", code)
|
||||
} else { fmt.Fprintln(os.Stderr, err) }
|
||||
} else {
|
||||
fmt.Fprintln(os.Stderr, err)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
bait.Em.Emit("command.exit", 0)
|
||||
|
|
Loading…
Reference in New Issue