diff --git a/libexec/tmuxifier-alias b/libexec/tmuxifier-alias index f5b1e32..1bca770 100755 --- a/libexec/tmuxifier-alias +++ b/libexec/tmuxifier-alias @@ -17,25 +17,25 @@ case "$1" in "window" | "win" | "w" ) echo "load-window" ;; - "new-ses" | "ns" ) + "new-ses" | "nses" | "ns" ) echo "new-session" ;; - "new-win" | "nw" ) + "new-win" | "nwin" | "nw" ) echo "new-window" ;; - "edit-ses" | "es" ) + "edit-ses" | "eses" | "es" ) echo "edit-session" ;; - "edit-win" | "ew" ) + "edit-win" | "ewin" | "ew" ) echo "edit-window" ;; - "ls" ) + "l" ) echo "list" ;; - "list-ses" | "lss" ) + "list-ses" | "lses" | "ls" ) echo "list-sessions" ;; - "list-win" | "lsw" ) + "list-win" | "lwin" | "lw" ) echo "list-windows" ;; * ) diff --git a/libexec/tmuxifier-edit-session b/libexec/tmuxifier-edit-session index a6f0cbc..17f5125 100755 --- a/libexec/tmuxifier-edit-session +++ b/libexec/tmuxifier-edit-session @@ -6,7 +6,7 @@ set -e if [ "$1" == "--help" ]; then echo "usage: tmuxifier edit-session -Aliases: edit-ses, es +Aliases: edit-ses, eses, es Open specified session layout for editing in \$EDITOR." exit diff --git a/libexec/tmuxifier-edit-window b/libexec/tmuxifier-edit-window index 5199292..6ff6736 100755 --- a/libexec/tmuxifier-edit-window +++ b/libexec/tmuxifier-edit-window @@ -6,7 +6,7 @@ set -e if [ "$1" == "--help" ]; then echo "usage: tmuxifier edit-window -Aliases: edit-win, ew +Aliases: edit-win, ewin, ew Open specified window layout for editing in \$EDITOR." exit diff --git a/libexec/tmuxifier-help b/libexec/tmuxifier-help index a2009f3..c0579ff 100755 --- a/libexec/tmuxifier-help +++ b/libexec/tmuxifier-help @@ -26,9 +26,9 @@ Some useful tmuxifier commands are: load-session s Load the specified session layout. load-window w Load the specified window layout into current session. - list ls List all session and window layouts. - list-sessions lss List session layouts. - list-windows lsw List window layouts. + list l List all session and window layouts. + list-sessions ls List session layouts. + list-windows lw List window layouts. new-session ns Create new session layout and open it with \$EDITOR. new-window nw Create new window layout and open it with \$EDITOR. edit-session es Edit specified session layout with \$EDITOR. diff --git a/libexec/tmuxifier-list b/libexec/tmuxifier-list index 3b86672..2c4cab7 100755 --- a/libexec/tmuxifier-list +++ b/libexec/tmuxifier-list @@ -6,7 +6,7 @@ set -e if [ "$1" == "--help" ]; then echo "usage: tmuxifier list -Aliases: ls +Aliases: l List all available session and window layouts." exit diff --git a/libexec/tmuxifier-list-sessions b/libexec/tmuxifier-list-sessions index a72bca5..8651ef8 100755 --- a/libexec/tmuxifier-list-sessions +++ b/libexec/tmuxifier-list-sessions @@ -6,7 +6,7 @@ set -e if [ "$1" == "--help" ]; then echo "usage: tmuxifier list-sessions -Aliases: list-ses, lss +Aliases: list-ses, lses, ls List all session layouts." exit diff --git a/libexec/tmuxifier-list-windows b/libexec/tmuxifier-list-windows index dabf323..0cc6179 100755 --- a/libexec/tmuxifier-list-windows +++ b/libexec/tmuxifier-list-windows @@ -6,7 +6,7 @@ set -e if [ "$1" == "--help" ]; then echo "usage: tmuxifier list-windows -Aliases: list-win, lsw +Aliases: list-win, lwin, lw List all window layouts." exit diff --git a/libexec/tmuxifier-new-session b/libexec/tmuxifier-new-session index 58a19b6..23e370d 100755 --- a/libexec/tmuxifier-new-session +++ b/libexec/tmuxifier-new-session @@ -6,7 +6,7 @@ set -e if [ "$1" == "--help" ]; then echo "usage: tmuxifier new-session -Aliases: new-ses, ns +Aliases: new-ses, nses, ns Create a new session layout and open it for editing in \$EDITOR." exit diff --git a/libexec/tmuxifier-new-window b/libexec/tmuxifier-new-window index 010b3ff..0dd6a4a 100755 --- a/libexec/tmuxifier-new-window +++ b/libexec/tmuxifier-new-window @@ -6,7 +6,7 @@ set -e if [ "$1" == "--help" ]; then echo "usage: tmuxifier new-window -Aliases: new-win, ws +Aliases: new-win, nwin, nw Create a new window layout and open it for editing in \$EDITOR." exit