mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2024-11-25 00:27:37 +08:00
21 lines
575 B
Fish
21 lines
575 B
Fish
function marks
|
|
if test (count $argv) -gt 0
|
|
echo "Usage: marks"
|
|
else
|
|
set -l file_list (command ls $MARKPATH/)
|
|
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
|
|
for mark_name in $mark_list
|
|
echo "$mark_name -> "(realpath $MARKPATH/$mark_name)
|
|
end
|
|
end
|
|
end
|
|
end
|