summaryrefslogtreecommitdiff
path: root/.tmux.conf
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2015-02-08 15:24:04 +0900
committerSean Whitton <spwhitton@spwhitton.name>2015-02-08 15:26:24 +0900
commitc457b6de37a02b7d44bca456e3228dcae2872245 (patch)
tree478fec3192992a2a23cda75526a10fa4f8c6e725 /.tmux.conf
parentd79727770e2d1b7a1c8eb3b6c46421265bfcf1e5 (diff)
downloaddotfiles-c457b6de37a02b7d44bca456e3228dcae2872245.tar.gz
trying out C-j as tmux prefix
Diffstat (limited to '.tmux.conf')
-rw-r--r--.tmux.conf9
1 files changed, 4 insertions, 5 deletions
diff --git a/.tmux.conf b/.tmux.conf
index 60a1c57c..f2abc89a 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -32,14 +32,13 @@ set -g status-right "#[fg=blue]#S #I:#P #[fg=yellow]:: %d %b %Y #[fg=green]:: %l
# --- key bindings
-unbind C-t
-set -g prefix C-t
+set -g prefix2 C-j
# C-t t to send C-t to e.g. Emacs or nested tmux, and C-t C-t to
# bounce between windows
-bind t send-prefix
-unbind C-t
-bind-key C-t last-window
+bind j send-prefix -2
+unbind C-j
+bind-key C-j last-window
# splitting should maintain current working directory
bind '"' split-window -c "#{pane_current_path}"