about summary refs log tree commit diff stats
path: root/cpp/.traces/interpolate-works
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-26 22:44:18 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-26 22:44:18 -0700
commit1c37ddde900a305a99086369eb2db5b6da23b0d8 (patch)
treecd5800f84408c5d84b7a3cfc4e94db87f4217396 /cpp/.traces/interpolate-works
parentd72f379919d4956bdda6a682431f422a25ad22c1 (diff)
downloadmu-1c37ddde900a305a99086369eb2db5b6da23b0d8.tar.gz
1203
Diffstat (limited to 'cpp/.traces/interpolate-works')
0 files changed, 0 insertions, 0 deletions
id='n9' href='#n9'>9 10 11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27


                                         


                                                                   




                                                                              
                                              
 











                                                                   

               
set -g default-terminal "screen-256color"

set-window-option -g mode-keys vi
bind-key -T copy-mode-vi 'v' send-keys -X begin-selection
bind-key -T copy-mode-vi 'y' send-keys -X copy-selection-and-cancel


# Vim style
# copy tmux's selection buffer into the primary X selection with PREFIX+CTRL+Y
bind-key u run "tmux save-buffer - | xsel -ib"
# copy primary X selection into tmux's selection buffer with PREFIX+CTRL+P
bind-key e run "xsel -ob | tmux load-buffer -"

set-option -g set-titles on
set-option -g set-titles-string '#S> #I.#P #W'

set -g visual-activity on
set -g monitor-activity on
set -g visual-bell on
set -g bell-action any

## Join windows: <prefix> s, <prefix> j
bind-key j command-prompt -p "join pane from:"  "join-pane -s '%%'"
bind-key s command-prompt -p "send pane to:"  "join-pane -t '%%'"

# Torn on mouse
set -g mouse on