2006-02-08 17:20:05 +08:00
|
|
|
function __fish_move_last -d "Move the last element of a directory history from src to dest"
|
2016-11-28 13:27:22 +08:00
|
|
|
set -l src $argv[1]
|
|
|
|
set -l dest $argv[2]
|
2006-02-08 17:20:05 +08:00
|
|
|
|
2016-11-28 13:27:22 +08:00
|
|
|
set -l size_src (count $$src)
|
2006-02-08 17:20:05 +08:00
|
|
|
|
2016-11-28 13:27:22 +08:00
|
|
|
if test $size_src = 0
|
|
|
|
# Cannot make this step
|
2019-03-28 18:55:27 +08:00
|
|
|
# Print a bel, which is the character to print for notifications like these.
|
|
|
|
printf \a
|
2016-11-28 13:27:22 +08:00
|
|
|
return 1
|
|
|
|
end
|
2006-02-08 17:20:05 +08:00
|
|
|
|
2016-11-28 13:27:22 +08:00
|
|
|
# Append current dir to the end of the destination
|
2019-12-07 03:22:18 +08:00
|
|
|
set -g (echo $dest) $$dest $PWD
|
2006-02-08 17:20:05 +08:00
|
|
|
|
2016-11-28 13:27:22 +08:00
|
|
|
set ssrc $$src
|
2010-09-18 10:18:26 +08:00
|
|
|
|
2016-11-28 13:27:22 +08:00
|
|
|
# Change dir to the last entry in the source dir-hist
|
|
|
|
builtin cd $ssrc[$size_src]
|
2006-02-08 17:20:05 +08:00
|
|
|
|
2016-11-28 13:27:22 +08:00
|
|
|
# Keep all but the last from the source dir-hist
|
|
|
|
set -e (echo $src)\[$size_src]
|
2006-02-08 17:20:05 +08:00
|
|
|
|
2016-11-28 13:27:22 +08:00
|
|
|
# All ok, return success
|
|
|
|
return 0
|
2010-09-18 10:18:26 +08:00
|
|
|
end
|
2006-02-08 17:20:05 +08:00
|
|
|
|