mirror of
https://github.com/zyedidia/micro.git
synced 2026-02-13 10:30:22 +09:00
Do correct cursor right with storing visual X in CursorRight action (#3103)
Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
This commit is contained in:
committed by
GitHub
parent
2d82362a66
commit
4e383dd110
@@ -211,7 +211,7 @@ func (h *BufPane) CursorLeft() bool {
|
||||
func (h *BufPane) CursorRight() bool {
|
||||
if h.Cursor.HasSelection() {
|
||||
h.Cursor.Deselect(false)
|
||||
h.Cursor.Loc = h.Cursor.Loc.Move(1, h.Buf)
|
||||
h.Cursor.Right()
|
||||
} else {
|
||||
tabstospaces := h.Buf.Settings["tabstospaces"].(bool)
|
||||
tabmovement := h.Buf.Settings["tabmovement"].(bool)
|
||||
|
||||
Reference in New Issue
Block a user