mirror of
https://github.com/zyedidia/micro.git
synced 2026-03-29 22:27:13 +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 {
|
func (h *BufPane) CursorRight() bool {
|
||||||
if h.Cursor.HasSelection() {
|
if h.Cursor.HasSelection() {
|
||||||
h.Cursor.Deselect(false)
|
h.Cursor.Deselect(false)
|
||||||
h.Cursor.Loc = h.Cursor.Loc.Move(1, h.Buf)
|
h.Cursor.Right()
|
||||||
} else {
|
} else {
|
||||||
tabstospaces := h.Buf.Settings["tabstospaces"].(bool)
|
tabstospaces := h.Buf.Settings["tabstospaces"].(bool)
|
||||||
tabmovement := h.Buf.Settings["tabmovement"].(bool)
|
tabmovement := h.Buf.Settings["tabmovement"].(bool)
|
||||||
|
|||||||
Reference in New Issue
Block a user