X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;ds=sidebyside;f=.tmux.conf;h=b2089ede659c7c4320c7b3942e53e7a1d822e641;hb=70305efec8d75ced23d56bb3693cf475df8edaf5;hp=fe4827c77e837727bd7676b296834639fb2b260c;hpb=7ae608fc1103371b8fa72fb027fb8206c25e9a15;p=dotfiles.git diff --git a/.tmux.conf b/.tmux.conf index fe4827c..b2089ed 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -56,6 +56,16 @@ set-option -g status-right '' # Increase scrollback lines set-option -g history-limit 1000 +# Set the command prefix to match GNU screen (CTRL+a) +# set-option -g prefix C-a +# +# Use C-a C-a key to send prefix instead of the default +# unbind-key C-b +# bind-key C-a send-prefix +# +# C-a for last-window +# bind-key C-a last-window + # R to reload config without restart bind-key R source-file ~/.tmux.conf \; display "Reloaded!" @@ -70,23 +80,17 @@ bind J resize-pane -D 10 bind K resize-pane -U 10 bind L resize-pane -R 10 -# Set the command prefix to match GNU screen (CTRL+a) -# set-option -g prefix C-a -# -# Use C-a C-a key to send prefix instead of the default -# unbind-key C-b -# bind-key C-a send-prefix -# -# C-a for last-window -# bind-key C-a last-window +bind -r C-h select-window -t :- +bind -r C-l select-window -t :+ # Use vertical and horizontal chars to split the screen bind-key | split-window -h bind-key - split-window -v # Copy tmux copy buffer to X clipboard -# bind C-y run "tmux save-buffer - | xclip -i" -bind C-p copy-pipe "xsel -i -p && xsel -o -p | xsel -i -b" +# bind C-y run-shell "tmux save-buffer - | xclip -i" +bind -t emacs-copy C-p copy-pipe "xsel -i -p && xsel -o -p | xsel -i -b" +bind -t vi-copy C-p copy-pipe "xsel -i -p && xsel -o -p | xsel -i -b" # Copy X clipboard to tmux paste buffer -# bind C-p run "xclip -o | tmux load-buffer -; tmux paste-buffer" -bind C-y run "xsel -o | tmux load-buffer - ; tmux paste-buffer" +# bind C-p run-shell "xclip -o | tmux load-buffer -; tmux paste-buffer" +bind C-y run-shell "xsel -o | tmux load-buffer - ; tmux paste-buffer"