You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#!/usr/bin/env false
|
|
|
|
|
|
if [[ -n "$TMUX" ]]; then
|
|
|
function tmuxn { tmux new-window "$*"; }
|
|
|
function tmuxs { tmux split-window -v -c '#{pane_current_path}' "$*"; }
|
|
|
function tmuxsf { tmux split-window -v -f -c '#{pane_current_path}' "$*"; }
|
|
|
function tmuxv { tmux split-window -h -c '#{pane_current_path}' "$*"; }
|
|
|
function tmuxvf { tmux split-window -h -f -c '#{pane_current_path}' "$*"; }
|
|
|
fi
|