mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
31 lines
787 B
Fish
31 lines
787 B
Fish
function marks
|
|
if test (count $argv) -gt 0
|
|
echo "Usage: marks"
|
|
else
|
|
set -l file_list (command ls $MARKPATH)
|
|
if test (count $file_list) -eq 0
|
|
echo "No marks currently defined."
|
|
else
|
|
set -l mark_list
|
|
for file in $file_list
|
|
if test -d $MARKPATH/$file -a -L $MARKPATH/$file
|
|
set mark_list $mark_list $file
|
|
end
|
|
end
|
|
if test (count $mark_list) -eq 0
|
|
echo "No marks currently defined."
|
|
else
|
|
set -l current_dir (pwd)
|
|
set -l output ""
|
|
for mark_name in $mark_list
|
|
cd $MARKPATH/$mark_name
|
|
set -l real_path (pwd)
|
|
set output "$output$mark_name -> $real_path"\n
|
|
end
|
|
echo $output | column -t
|
|
cd $current_dir
|
|
end
|
|
end
|
|
end
|
|
end
|