2007-01-16 09:29:18 +08:00
|
|
|
function nextd --description "Move forward in the directory history"
|
2020-03-10 02:36:12 +08:00
|
|
|
set -l options h/help l/list
|
2017-07-14 02:16:14 +08:00
|
|
|
argparse -n nextd --max-args=1 $options -- $argv
|
2017-07-10 07:26:11 +08:00
|
|
|
or return
|
2006-11-18 00:24:38 +08:00
|
|
|
|
2017-07-10 07:26:11 +08:00
|
|
|
if set -q _flag_help
|
|
|
|
__fish_print_help nextd
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
|
2016-11-28 13:27:22 +08:00
|
|
|
set -l times 1
|
2017-07-14 02:16:14 +08:00
|
|
|
if set -q argv[1]
|
2018-04-02 04:42:38 +08:00
|
|
|
if test $argv[1] -ge 0 2>/dev/null
|
2017-07-10 07:26:11 +08:00
|
|
|
set times $argv[1]
|
|
|
|
else
|
2022-04-04 11:57:55 +08:00
|
|
|
printf (_ "%s: The number of positions to skip must be a non-negative integer\n") nextd >&2
|
2017-07-10 07:26:11 +08:00
|
|
|
return 1
|
2012-05-05 09:53:38 +08:00
|
|
|
end
|
|
|
|
end
|
2006-02-08 17:20:05 +08:00
|
|
|
|
2016-11-28 13:27:22 +08:00
|
|
|
# Traverse history
|
|
|
|
set -l code 1
|
2017-07-10 07:26:11 +08:00
|
|
|
for i in (seq $times)
|
|
|
|
# Try one step backward
|
|
|
|
if __fish_move_last dirnext dirprev
|
|
|
|
# We consider it a success if we were able to do at least 1 step
|
|
|
|
# (low expectations are the key to happiness ;)
|
|
|
|
set code 0
|
|
|
|
else
|
|
|
|
break
|
2012-05-05 09:53:38 +08:00
|
|
|
end
|
|
|
|
end
|
2006-02-08 17:20:05 +08:00
|
|
|
|
2016-11-28 13:27:22 +08:00
|
|
|
# Show history if needed
|
2017-07-10 07:26:11 +08:00
|
|
|
if set -q _flag_list
|
2016-11-28 13:27:22 +08:00
|
|
|
dirh
|
|
|
|
end
|
2006-02-08 17:20:05 +08:00
|
|
|
|
2016-11-28 13:27:22 +08:00
|
|
|
# Set direction for 'cd -'
|
2017-07-10 07:26:11 +08:00
|
|
|
test $code = 0
|
|
|
|
and set -g __fish_cd_direction prev
|
2006-02-08 17:20:05 +08:00
|
|
|
|
2016-11-28 13:27:22 +08:00
|
|
|
return $code
|
2010-09-18 10:18:26 +08:00
|
|
|
end
|