summaryrefslogtreecommitdiff
path: root/.tmux.conf
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2015-02-08 15:25:41 +0900
committerSean Whitton <spwhitton@spwhitton.name>2015-02-08 15:26:24 +0900
commit9b5102bcdc9bf9c5219368b67b25726332c3a6f6 (patch)
tree48dfac958bec999a609f9e761e9cb1658c96205f /.tmux.conf
parentc457b6de37a02b7d44bca456e3228dcae2872245 (diff)
downloaddotfiles-9b5102bcdc9bf9c5219368b67b25726332c3a6f6.tar.gz
option to use ssh instead of mosh with tmux
Diffstat (limited to '.tmux.conf')
-rw-r--r--.tmux.conf6
1 files changed, 4 insertions, 2 deletions
diff --git a/.tmux.conf b/.tmux.conf
index f2abc89a..0e1503fb 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -48,8 +48,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 "host" "split-window 'mosh %1'"
-bind-key h command-prompt -p "host" "new-window -n %1 'mosh %1'"
+bind-key C-h command-prompt -p "most 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-e split-window 'emacsclient -amg -t'
bind-key e new-window -n emacs 'emacsclient -amg -t'
bind-key E new-window -n mail 'mutt'