From 77f2bd167450a2131d761b0060a6968a09155a3c Mon Sep 17 00:00:00 2001 From: Joe Hillenbrand Date: Thu, 28 May 2020 14:45:13 -0700 Subject: [PATCH] Fix up usage output --- functions/to.fish | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/functions/to.fish b/functions/to.fish index 2ab0eff..0fbe8ff 100644 --- a/functions/to.fish +++ b/functions/to.fish @@ -1,16 +1,16 @@ # Display general usage function __to_usage echo 'Usage:' - echo ' to # Go to ' - echo ' to add [] # Create a new bookmark with name ' - echo ' # that points to the current directory.' - echo ' # If no is given,' - echo ' # the current directory name is used.' - echo ' to rm # Remove ' - echo ' to (ls|list) # List all bookmarks' - echo ' to (mv|rename) # Change the name of a bookmark' - echo ' # from to ' - echo ' to help # Show this message' + echo ' to Go to ' + echo ' to add [] Create a new bookmark with name ' + echo ' that points to the current directory.' + echo ' If no is given,' + echo ' the current directory name is used.' + echo ' to rm Remove ' + echo ' to (ls|list) List all bookmarks' + echo ' to (mv|rename) Change the name of a bookmark' + echo ' from to ' + echo ' to help Show this message' return 1 end