Fix content remaining in copy-paste buffers

This commit is contained in:
Tim Schubert 2021-03-18 19:28:36 +01:00
parent eb87259747
commit 3ee34dbdc2
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
2 changed files with 19 additions and 5 deletions

View file

@ -1,4 +1,17 @@
enable_audio_bell = false; copy_on_select no
clipboard_control no-append
allow_hyperlinks yes
detect_urls yes
strip_trailing_spaces never
window_alert_on_bell yes
enable_audio_bell = yes
bell_on_tab yes
tab_bar_style hidden
scrollback_lines 0
map ctrl+shift+v no_op
map ctrl+shift+p no_op
background #1f2022 background #1f2022
foreground #a3a3a3 foreground #a3a3a3
selection_background #a3a3a3 selection_background #a3a3a3

View file

@ -12,14 +12,15 @@ in
enable = true; enable = true;
terminal = "xterm-256color"; terminal = "xterm-256color";
extraConfig = '' extraConfig = ''
set -g automatic-rename on
set -g mode-keys vi
set -g mouse on set -g mouse on
set -g set-clipboard on set -g set-clipboard on
set -g set-titles on
set -g status on
set-window-option -g mode-keys vi
bind-key -Tcopy-mode v send -X begin-selection bind-key -Tcopy-mode v send -X begin-selection
bind-key -Tcopy-mode y send -X copy-selection bind-key -Tcopy-mode y send -X copy-selection
set -g status on
set-option -g set-titles on
set-option -g automatic-rename on
set-window-option -g mode-keys vi
''; '';
}; };
}; };