@@ -5,28 +5,28 @@ CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
55source " $CURRENT_DIR /scripts/variables.sh"
66source " $CURRENT_DIR /scripts/shared.sh"
77
8- setup_pipe_pane_key_binding () {
8+ setup_logging_key_binding () {
99 local key=$( get_tmux_option " $logging_key_option " " $default_logging_key " )
10- tmux bind-key " $key " run-shell " $CURRENT_DIR /scripts/tmux_proper_pipe_pane .sh"
10+ tmux bind-key " $key " run-shell " $CURRENT_DIR /scripts/toggle_logging .sh"
1111}
1212
1313setup_pane_screenshot_key_binding () {
1414 local key=$( get_tmux_option " $pane_screen_capture_key_option " " $default_pane_screen_capture_key " )
15- tmux bind-key " $key " run-shell " $CURRENT_DIR /scripts/tmux_pane_screenshot .sh"
15+ tmux bind-key " $key " run-shell " $CURRENT_DIR /scripts/screen_capture .sh"
1616}
1717
1818setup_scrollback_dump_key_binding () {
1919 local key=$( get_tmux_option " $save_complete_history_key_option " " $default_save_complete_history_key " )
20- tmux bind-key " $key " run-shell " $CURRENT_DIR /scripts/tmux_scrollback_dump .sh"
20+ tmux bind-key " $key " run-shell " $CURRENT_DIR /scripts/save_complete_history .sh"
2121}
2222
2323setup_clear_scrollback_key_binding () {
2424 local key=$( get_tmux_option " $clear_history_key_option " " $default_clear_history_key " )
25- tmux bind-key " $key " run-shell " $CURRENT_DIR /scripts/tmux_scrollback_clear .sh"
25+ tmux bind-key " $key " run-shell " $CURRENT_DIR /scripts/clear_history .sh"
2626}
2727
2828main () {
29- setup_pipe_pane_key_binding
29+ setup_logging_key_binding
3030 setup_pane_screenshot_key_binding
3131 setup_scrollback_dump_key_binding
3232 setup_clear_scrollback_key_binding
0 commit comments