Compare commits

..

No commits in common. "ded0be275fae6db804630766d11161d9d51a2afe" and "e044aeb5edceeb4a79cf625ee0693f85f1f1b5d7" have entirely different histories.

4 changed files with 5 additions and 8 deletions

View File

@ -155,7 +155,7 @@ func main() {
if getopt.NArgs() > 0 { if getopt.NArgs() > 0 {
luaArgs := rt.NewTable() luaArgs := rt.NewTable()
for i, arg := range getopt.Args() { for i, arg := range getopt.Args() {
luaArgs.Set(rt.IntValue(int64(i)), rt.StringValue(arg)) luaArgs.Set(rt.IntValue(int64(i + 1)), rt.StringValue(arg))
} }
l.GlobalEnv().Set(rt.StringValue("args"), rt.TableValue(luaArgs)) l.GlobalEnv().Set(rt.StringValue("args"), rt.TableValue(luaArgs))

View File

@ -34,6 +34,7 @@ const (
charCtrlHat // ^^ charCtrlHat // ^^
charCtrlUnderscore // ^_ charCtrlUnderscore // ^_
charBackspace2 = 127 // ASCII 1963 charBackspace2 = 127 // ASCII 1963
) )
// Escape sequences // Escape sequences

View File

@ -416,10 +416,6 @@ func (rl *Instance) Readline() (string, error) {
rl.renderHelpers() rl.renderHelpers()
} }
case charCtrlUnderscore:
rl.undoLast()
rl.viUndoSkipAppend = true
case '\r': case '\r':
fallthrough fallthrough
case '\n': case '\n':
@ -557,8 +553,8 @@ func (rl *Instance) editorInput(r []rune) {
rl.refreshVimStatus() rl.refreshVimStatus()
default: default:
// Don't insert control keys // For some reason Ctrl+k messes with the input line, so ignore it.
if r[0] >= 1 && r[0] <= 31 { if r[0] == 11 {
return return
} }
// We reset the history nav counter each time we come here: // We reset the history nav counter each time we come here:

View File

@ -2,7 +2,7 @@ package main
// String vars that are free to be changed at compile time // String vars that are free to be changed at compile time
var ( var (
version = "v2.0.0" version = "v1.2.0"
defaultConfDir = "" // ~ will be substituted for home, path for user's default config defaultConfDir = "" // ~ will be substituted for home, path for user's default config
defaultHistDir = "" defaultHistDir = ""
commonRequirePaths = "';./libs/?/init.lua;./?/init.lua;./?/?.lua'" commonRequirePaths = "';./libs/?/init.lua;./?/init.lua;./?/?.lua'"