From c194f8ccee0cddf1019e899c2cbd09c07467050f Mon Sep 17 00:00:00 2001 From: Chaitanya Sharma Date: Mon, 10 Jun 2024 16:09:49 +0530 Subject: [PATCH] fix: mark index as required for replace and switch flags --- harpoon | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/harpoon b/harpoon index a74c560..9efed8a 100755 --- a/harpoon +++ b/harpoon @@ -19,12 +19,12 @@ help() { echo "Options:" echo " -a Track current tmux session" echo " -A Track pane within current tmux session" - echo " -r [index] Replace tracked entry at index with current session" - echo " -R [index] Replace tracked entry at index with current pane within session" + echo " -r Replace tracked entry at index with current session" + echo " -R Replace tracked entry at index with current pane within session" echo " -d [session_name] Stop tracking session with session name. If" echo " session_name is not passed then remove current session" echo " -l List tracked sessions" - echo " -s [index] Switch to the session at the specified index in the" + echo " -s Switch to the session at the specified index in the" echo " list of tracked sessions" echo " -e Edit the sessions file" echo " -h Display this help message"