summaryrefslogtreecommitdiff
path: root/.tmux.conf
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2015-02-08 21:25:58 +0900
committerSean Whitton <spwhitton@spwhitton.name>2015-02-08 21:27:14 +0900
commit8e9a810b36e37d2c3eb5da54a52703192919081e (patch)
tree97d9c6151d4b5c58239d0f70765888c84ae3fb2f /.tmux.conf
parent047127c8e5328fc6c60fd40fcb1f7ab8fe8ad725 (diff)
downloaddotfiles-8e9a810b36e37d2c3eb5da54a52703192919081e.tar.gz
C-] as tmux prefix...
Diffstat (limited to '.tmux.conf')
-rw-r--r--.tmux.conf13
1 files changed, 6 insertions, 7 deletions
diff --git a/.tmux.conf b/.tmux.conf
index 0e1503fb..c4a54dc0 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -32,13 +32,12 @@ set -g status-right "#[fg=blue]#S #I:#P #[fg=yellow]:: %d %b %Y #[fg=green]:: %l
# --- key bindings
-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 j send-prefix -2
-unbind C-j
-bind-key C-j last-window
+# - C-] ] to send C-] to e.g. Emacs or nested tmux;
+# - C-] C-] to bounce between windows
+set -g prefix C-]
+bind t send-prefix
+unbind C-]
+bind-key C-] last-window
# splitting should maintain current working directory
bind '"' split-window -c "#{pane_current_path}"