From 5cfb8990bd2efff48f22ea020efeefda52da1ad6 Mon Sep 17 00:00:00 2001
From: abs3nt <abs3nt@asdf.cafe>
Date: Mon, 3 Mar 2025 18:38:13 -0800
Subject: [PATCH] Fuck heredoc

---
 functions/_repo_help.fish | 26 ++++++++++++--------------
 1 file changed, 12 insertions(+), 14 deletions(-)

diff --git a/functions/_repo_help.fish b/functions/_repo_help.fish
index 9ed1914..1bffd62 100644
--- a/functions/_repo_help.fish
+++ b/functions/_repo_help.fish
@@ -1,17 +1,15 @@
 function _repo_help
-    cat < < EOF
-    Usage: repo <command > < repository >
-    Commands:
-    get Clone a repository to the repos directory
-    open Open the current repository in the browser
-    aur Clone an AUR repository
-    list List all repositories
-    go | goto Navigate to a repository
-    new | create Create a new repository
-    help Show this help message
+    echo "Usage: repo <command> <repository>
+Commands:
+  get         Clone a repository to the repos directory
+  open        Open the current repository in the browser
+  aur         Clone an AUR repository
+  list        List all repositories
+  go | goto   Navigate to a repository
+  new | create Create a new repository
+  help        Show this help message
 
-    Examples:
-    repo get github.com/user/repo
-    repo open
-    EOF
+Examples:
+  repo get github.com/user/repo
+  repo open"
 end