mirror of
https://github.com/IlanCosman/tide.git
synced 2024-11-27 13:18:02 +03:00
11 lines
219 B
Fish
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 |