diff options
Diffstat (limited to '')
-rw-r--r-- | ui/ui.go | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -176,10 +176,18 @@ func (ui *UI) InputRight() { ui.e.Right() } +func (ui *UI) InputRightWord() { + ui.e.RightWord() +} + func (ui *UI) InputLeft() { ui.e.Left() } +func (ui *UI) InputLeftWord() { + ui.e.LeftWord() +} + func (ui *UI) InputHome() { ui.e.Home() } |