diff options
Diffstat (limited to '_tmux.conf')
-rw-r--r-- | _tmux.conf | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -33,6 +33,7 @@ # Aaron LI # 2015-01-22 # +# 2018-03-24: Add bind P to save scrollback to file # 2017-11-25: Tweak styles/format # 2017-11-21: Increase scrollback history # 2017-09-04: Tweak and fix several mistakes; more tweaks @@ -152,6 +153,11 @@ bind , command-prompt -p "(rename-window '#W')" "rename-window '%%'" # Do the same for session renaming bind '$' command-prompt -p "(rename-session '#S')" "rename-session '%%'" +# Save all scrollback to a file +# Credit: https://unix.stackexchange.com/a/26568 +bind P command-prompt -p 'save history to filename:' \ + -I '~/tmux.history' 'capture-pane -S - ; save-buffer %1 ; delete-buffer' + # Copy & paste bind Escape copy-mode bind p paste-buffer @@ -188,7 +194,7 @@ setw -g window-status-current-format \ # Window mode setw -g mode-style "fg=yellow,bg=default,bold" -setw -g clock-mode-colour yellow +setw -g clock-mode-colour green setw -g clock-mode-style 24 # Messaging |