Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update auto completion, fix bugs #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 10 additions & 11 deletions tmux
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,24 @@
# The original version was modified to include support for things beyond simple
# commands. This can be found at:
# https://github.com/srsudar/tmux-completion
_tmux()
{
local cur prev opts onePrev
_tmux() {
local cur prev opts onePrev target_commands
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
onePrev="${COMP_WORDS[COMP_CWORD-1]}"
onePrev="${COMP_WORDS[COMP_CWORD - 1]}"
target_commands=("attach-session" "has-session" "kill-session" "list-clients" "lock-session"
"rename-session" "switch-client" "last-window" "list-windows" "next-window" "previous-window"
"set-hook" "show-hooks" "set-environment" "show-environment" "attach" "a")

if [ "$COMP_CWORD" -ge 2 ]; then
# Maybe we want to list available windows. We're going to assume this is
# defined as: [ls | list-session] -t .
local windowCommands currentSessions
windowCommands=("ls", "list-sessions")

prev="${COMP_WORDS[COMP_CWORD-2]}"
if [ "$prev" = "attach" ] || [ "$prev" = "attach-session" ] ; then
if [ "$onePrev" = "-t" ] ; then
prev="${COMP_WORDS[COMP_CWORD - 2]}"
if [[ " ${array[@]} " =~ " ${prev} " ]]; then
if [ "$onePrev" = "-t" ]; then
# We get a list of all the names.
# We're assuming this output is in the form:
# name: some other crap
Expand All @@ -34,7 +36,7 @@ _tmux()
# need to pipe both stdout and stderr to cut. Therefore we are piping
# with |& rather than just |.
currentSessions=$(tmux ls |& cut -d : -f 1)
if [ "${currentSessions[0]}" = "failed to connect to server" ]; then
if [[ "${currentSessions[0]}" == "no server running"* ]] || [[ "${currentSessions[0]}" == "error connecting to"* ]]; then
# we don't want to display any options, so clear the array.
currentSessions=$( )
fi
Expand Down Expand Up @@ -135,6 +137,3 @@ _tmux()
complete -F _tmux tmux

# END tmux completion