2007-01-16 01:29:18 +00:00
|
|
|
function nextd --description "Move forward in the directory history"
|
2020-03-09 18:36:12 +00:00
|
|
|
set -l options h/help l/list
|
2017-07-13 18:16:14 +00:00
|
|
|
argparse -n nextd --max-args=1 $options -- $argv
|
2017-07-09 23:26:11 +00:00
|
|
|
or return
|
2006-11-17 16:24:38 +00:00
|
|
|
|
2017-07-09 23:26:11 +00:00
|
|
|
if set -q _flag_help
|
|
|
|
__fish_print_help nextd
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
set -l times 1
|
2017-07-13 18:16:14 +00:00
|
|
|
if set -q argv[1]
|
2018-04-01 20:42:38 +00:00
|
|
|
if test $argv[1] -ge 0 2>/dev/null
|
2017-07-09 23:26:11 +00:00
|
|
|
set times $argv[1]
|
|
|
|
else
|
|
|
|
printf (_ "%s: The number of positions to skip must be a non-negative integer\n") nextd
|
|
|
|
return 1
|
2012-05-05 01:53:38 +00:00
|
|
|
end
|
|
|
|
end
|
2006-02-08 09:20:05 +00:00
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
# Traverse history
|
|
|
|
set -l code 1
|
2017-07-09 23:26:11 +00: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 01:53:38 +00:00
|
|
|
end
|
|
|
|
end
|
2006-02-08 09:20:05 +00:00
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
# Show history if needed
|
2017-07-09 23:26:11 +00:00
|
|
|
if set -q _flag_list
|
2016-11-28 05:27:22 +00:00
|
|
|
dirh
|
|
|
|
end
|
2006-02-08 09:20:05 +00:00
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
# Set direction for 'cd -'
|
2017-07-09 23:26:11 +00:00
|
|
|
test $code = 0
|
|
|
|
and set -g __fish_cd_direction prev
|
2006-02-08 09:20:05 +00:00
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
return $code
|
2010-09-18 02:18:26 +00:00
|
|
|
end
|