Start with fixing paste issue
This commit is contained in:
parent
c0cb2040a0
commit
ff00c45f77
@ -1,6 +1,11 @@
|
|||||||
package handlers
|
package handlers
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bufio"
|
||||||
|
"io"
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
|
||||||
"github.com/gizak/termui"
|
"github.com/gizak/termui"
|
||||||
"github.com/nlopes/slack"
|
"github.com/nlopes/slack"
|
||||||
|
|
||||||
@ -60,7 +65,7 @@ func anyKeyHandler(ctx *context.AppContext) func(termui.Event) {
|
|||||||
case "<left>":
|
case "<left>":
|
||||||
actionMoveCursorLeft(ctx.View)
|
actionMoveCursorLeft(ctx.View)
|
||||||
default:
|
default:
|
||||||
actionInput(ctx.View, key)
|
// actionInput(ctx.View, key)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -170,6 +175,21 @@ func actionInsertMode(ctx *context.AppContext) {
|
|||||||
ctx.Mode = context.InsertMode
|
ctx.Mode = context.InsertMode
|
||||||
ctx.View.Mode.Par.Text = "INSERT"
|
ctx.View.Mode.Par.Text = "INSERT"
|
||||||
termui.Render(ctx.View.Mode)
|
termui.Render(ctx.View.Mode)
|
||||||
|
|
||||||
|
r := bufio.NewReader(os.Stdin)
|
||||||
|
for {
|
||||||
|
if c, _, err := r.ReadRune(); err != nil {
|
||||||
|
if err == io.EOF {
|
||||||
|
break
|
||||||
|
} else {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
log.Fatal(string(c))
|
||||||
|
ctx.View.Input.Insert(string(c))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func actionCommandMode(ctx *context.AppContext) {
|
func actionCommandMode(ctx *context.AppContext) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user