Commit 591330b1 authored by Bruno Pinto's avatar Bruno Pinto

Merge pull request #192 from grelkin-features/columnize-marks-output

parents a0e74e00 71699012
......@@ -16,11 +16,13 @@ function marks
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)
echo "$mark_name -> $real_path"
set output "$output$mark_name -> $real_path"\n
end
echo $output | column -t
cd $current_dir
end
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment