-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtmux
140 lines (131 loc) · 3.55 KB
/
tmux
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# START tmux completion
# This file is in the public domain
# See: http://www.debian-administration.org/articles/317 for how to write more.
# Usage: Put "source bash_completion_tmux.sh" into your .bashrc
#
# 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
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
onePrev="${COMP_WORDS[COMP_CWORD-1]}"
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
# We get a list of all the names.
# We're assuming this output is in the form:
# name: some other crap
# We'll get this by using cut--use ":" as a delimiter, and print the
# first column.
# If there are no sessions, we expect the following message on stderr:
# failed to connect to server: Connection refused
# In this case we'll return an empty list.
# NB: Since the failed to connect message is displayed on stderr, we
# 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
# we don't want to display any options, so clear the array.
currentSessions=$( )
fi
COMPREPLY=($(compgen -W "${currentSessions}" -- ${cur}))
return 0
fi
fi
fi
opts=" \
attach-session \
bind-key \
break-pane \
capture-pane \
choose-client \
choose-session \
choose-window \
clear-history \
clock-mode \
command-prompt \
confirm-before \
copy-buffer \
copy-mode \
delete-buffer \
detach-client \
display-message \
display-panes \
down-pane \
find-window \
has-session \
if-shell \
join-pane \
kill-pane \
kill-server \
kill-session \
kill-window \
last-window \
link-window \
list-buffers \
list-clients \
list-commands \
list-keys \
list-panes \
list-sessions \
list-windows \
load-buffer \
lock-client \
lock-server \
lock-session \
move-window \
new-session \
new-window \
next-layout \
next-window \
paste-buffer \
pipe-pane \
previous-layout \
previous-window \
refresh-client \
rename-session \
rename-window \
resize-pane \
respawn-window \
rotate-window \
run-shell \
save-buffer \
select-layout \
select-pane \
select-prompt \
select-window \
send-keys \
send-prefix \
server-info \
set-buffer \
set-environment \
set-option \
set-window-option \
show-buffer \
show-environment \
show-messages \
show-options \
show-window-options \
source-file \
split-window \
start-server \
suspend-client \
swap-pane \
swap-window \
switch-client \
unbind-key \
unlink-window \
up-pane"
COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
return 0
}
complete -F _tmux tmux
# END tmux completion