-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstd.tmux
30 lines (23 loc) · 941 Bytes
/
std.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
# Standard dev session
# Create new session, go to LLVM source dir.
new-session -d -s mips 'cd $HOME/work/llvm/git; exec $SHELL'
# Name window with LLVM code editor.
set-window-option -t 1 automatic-rename off
rename-window -t 1 'LLVM x86'
# Make a couple of panes for building, debugging etc.
split-window -h -p 50 -c $HOME/work/llvm/git
split-window -v -p 70 -c $HOME/work/llvm/sandbox
# Create window for the Malta board connection.
new-window -t 2 'ssh malta'
set-window-option -t 2 automatic-rename off
rename-window -t 2 'LLVM MIPS'
# Create window for MCLinker development
new-window -t 3 -c $HOME/work/mclinker/git
set-window-option -t 3 automatic-rename off
rename-window -t 3 'MCLinker'
# Make a couple of panes for building, debugging etc.
split-window -h -p 50 -c $HOME/work/mclinker/git
split-window -v -p 70 -c $HOME/work/mclinker/sandbox
# Select the zero pane in the first window
select-window -t 1
select-pane -t 1.0