mirror of
https://github.com/jimeh/tmuxifier.git
synced 2026-02-19 09:56:39 +00:00
61 lines
1.7 KiB
Bash
Executable File
61 lines
1.7 KiB
Bash
Executable File
#! /usr/bin/env bash
|
|
set -e
|
|
[ -n "$TMUXIFIER_DEBUG" ] && set -x
|
|
|
|
# Provide tmuxifier help
|
|
if [ "$1" == "--help" ]; then
|
|
tmuxifier-help
|
|
exit
|
|
fi
|
|
|
|
# Provide tmuxifier completions
|
|
if [ "$1" == "--complete" ]; then
|
|
tmuxifier-commands
|
|
exit
|
|
fi
|
|
|
|
has-help() {
|
|
grep -i "^# Provide tmuxifier help" "$1" >/dev/null
|
|
}
|
|
|
|
command="$1"
|
|
if [ -z "$command" ]; then
|
|
echo "usage: tmuxifier <command> [<args>]
|
|
|
|
Some useful tmuxifier commands are:
|
|
<command> <alias>
|
|
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.
|
|
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.
|
|
edit-window ew Edit specified window layout with \$EDITOR.
|
|
commands List all tmuxifier commands.
|
|
version Print Tmuxifier version.
|
|
help Show this message.
|
|
|
|
See 'tmuxifier help <command>' for information on a specific command."
|
|
exit
|
|
fi
|
|
|
|
! command_path="$(tmuxifier-resolve-command-path "$command")"
|
|
|
|
if [ -z "$command_path" ]; then
|
|
echo "tmuxifier: no such command '$command'" >&2
|
|
exit 1
|
|
fi
|
|
|
|
if has-help "$command_path"; then
|
|
shift
|
|
exec "$command_path" --help "$@"
|
|
else
|
|
echo "Sorry, the '$command' command isn't documented yet."
|
|
echo ""
|
|
echo "You can view the command's source here:"
|
|
echo "$command_path"
|
|
echo ""
|
|
fi
|