X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;ds=sidebyside;f=.tmux.conf;h=b2089ede659c7c4320c7b3942e53e7a1d822e641;hb=e092cba894b13330558549463d21a1efbe112d32;hp=ae1849a4a391fc09aef5d5e959a0f876993d8f59;hpb=b05eb8b5d703a9cdea0d4dd61462d936b33b9e4c;p=dotfiles.git diff --git a/.tmux.conf b/.tmux.conf index ae1849a..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,16 +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-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-shell "xclip -o | tmux load-buffer -; tmux paste-buffer" +bind C-y run-shell "xsel -o | tmux load-buffer - ; tmux paste-buffer"