summaryrefslogtreecommitdiff
path: root/.tmux.conf
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2015-02-08 21:26:09 +0900
committerSean Whitton <spwhitton@spwhitton.name>2015-02-08 21:27:14 +0900
commit719abea686610366a4c2fc109f627ab2a50cf396 (patch)
treea13f03c2f4a0f939923d4fbec169f691d9190a5f /.tmux.conf
parent8e9a810b36e37d2c3eb5da54a52703192919081e (diff)
downloaddotfiles-719abea686610366a4c2fc109f627ab2a50cf396.tar.gz
tmux can't distinguish C-H and C-h
Diffstat (limited to '.tmux.conf')
-rw-r--r--.tmux.conf6
1 files changed, 3 insertions, 3 deletions
diff --git a/.tmux.conf b/.tmux.conf
index c4a54dc0..20d373fe 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -47,10 +47,10 @@ bind c new-window -c "#{pane_current_path}"
# my launcher shortcuts: mnemonic is h for host and e for emacs/editor
# E for e-mail
bind-key m command-prompt -p "man" "split-window 'exec man %%'"
-bind-key C-h command-prompt -p "most to host" "split-window 'mosh %1'"
+bind-key C-h command-prompt -p "mosh to host" "split-window 'mosh %1'"
bind-key h command-prompt -p "mosh to host" "new-window -n %1 'mosh %1'"
-bind-key C-H command-prompt -p "ssh to host" "split-window 'ssh %1'"
-bind-key H command-prompt -p "ssh to host" "new-window -n %1 'ssh %1'"
+bind-key C-r command-prompt -p "ssh to host" "split-window 'ssh %1'"
+bind-key r command-prompt -p "ssh to host" "new-window -n %1 'ssh %1'"
bind-key C-e split-window 'emacsclient -amg -t'
bind-key e new-window -n emacs 'emacsclient -amg -t'
bind-key E new-window -n mail 'mutt'