dotfiles/private_dot_config/private_fish/functions/_pisces_jump.fish
2023-04-30 01:21:51 +03:00

9 lines
176 B
Fish

function _pisces_jump -a n -d "Moves cursor by n/-n characters"
test -z $n
and set n 0
set current (commandline -C)
commandline -C (math "$current + $n")
end