tide/conf.d/_tide_cursor_movement.fish
2020-05-20 10:05:33 -07:00

11 lines
219 B
Fish

function _cursor_up -a number
if test $number -gt 0
printf '%b' '\033['"$number"'A'
end
end
function _cursor_right -a number
if test $number -gt 0
printf '%b' '\033['"$number"'C'
end
end