mirror of
https://github.com/IlanCosman/tide.git
synced 2024-12-18 01:21:33 +03:00
11 lines
205 B
Fish
11 lines
205 B
Fish
function _cursor_up -a number
|
|
if test $number -gt 0
|
|
printf '\033['$number'A'
|
|
end
|
|
end
|
|
|
|
function _cursor_right -a number
|
|
if test $number -gt 0
|
|
printf '\033['$number'C'
|
|
end
|
|
end |