Skip to content

Commit

Permalink
Fix up usage output
Browse files Browse the repository at this point in the history
  • Loading branch information
joehillen committed May 28, 2020
1 parent 267a0a3 commit 77f2bd1
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions functions/to.fish
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Display general usage
function __to_usage
echo 'Usage:'
echo ' to <bookmark> # Go to <bookmark>'
echo ' to add [<bookmark>] # Create a new bookmark with name <bookmark>'
echo ' # that points to the current directory.'
echo ' # If no <bookmark> is given,'
echo ' # the current directory name is used.'
echo ' to rm <bookmark> # Remove <bookmark>'
echo ' to (ls|list) # List all bookmarks'
echo ' to (mv|rename) <old> <new> # Change the name of a bookmark'
echo ' # from <old> to <new>'
echo ' to help # Show this message'
echo ' to <bookmark> Go to <bookmark>'
echo ' to add [<bookmark>] Create a new bookmark with name <bookmark>'
echo ' that points to the current directory.'
echo ' If no <bookmark> is given,'
echo ' the current directory name is used.'
echo ' to rm <bookmark> Remove <bookmark>'
echo ' to (ls|list) List all bookmarks'
echo ' to (mv|rename) <old> <new> Change the name of a bookmark'
echo ' from <old> to <new>'
echo ' to help Show this message'
return 1
end

Expand Down

0 comments on commit 77f2bd1

Please sign in to comment.