aboutsummaryrefslogtreecommitdiff
path: root/view.go
diff options
context:
space:
mode:
Diffstat (limited to 'view.go')
-rw-r--r--view.go11
1 files changed, 2 insertions, 9 deletions
diff --git a/view.go b/view.go
index 4d9150a..ff272a6 100644
--- a/view.go
+++ b/view.go
@@ -4,7 +4,6 @@ import (
"io"
"path/filepath"
"time"
- "unicode"
"unicode/utf8"
"github.com/atotto/clipboard"
@@ -358,18 +357,12 @@ func (v *View) HandleEvent(ev tcell.Event) {
case tcell.KeyCR: // use unix style 0x0A (\n) for new lines
key = tcell.KeyLF
case tcell.KeyRight:
- //if ev.Modifiers()&tcell.ModShift != 0 {
- // v.text.ExpandDot(1, 1)
- //} else {
+ _, q1 := v.text.Dot()
+ v.SetCursor(q1, io.SeekStart)
v.SetCursor(utf8.RuneLen(v.Rune()), io.SeekCurrent)
- //}
return
case tcell.KeyLeft:
- //if ev.Modifiers()&tcell.ModShift != 0 {
- // v.text.ExpandDot(1, -1)
- //} else {
v.SetCursor(-1, io.SeekCurrent)
- //}
return
case tcell.KeyDown:
fallthrough