diff --git a/logging.tmux b/logging.tmux index c65856e..8ebbe4f 100755 --- a/logging.tmux +++ b/logging.tmux @@ -7,10 +7,10 @@ source "$CURRENT_DIR/scripts/shared.sh" main() { - tmux bind-key "$logging_key" run-shell "$CURRENT_DIR/scripts/toggle_logging.sh" - tmux bind-key "$pane_screen_capture_key" run-shell "$CURRENT_DIR/scripts/screen_capture.sh" - tmux bind-key "$save_complete_history_key" run-shell "$CURRENT_DIR/scripts/save_complete_history.sh" - tmux bind-key "$clear_history_key" run-shell "$CURRENT_DIR/scripts/clear_history.sh" + tmux bind-key -N "Begin logging current pane" "$logging_key" run-shell "$CURRENT_DIR/scripts/toggle_logging.sh" + tmux bind-key -N "Pane screenshot" "$pane_screen_capture_key" run-shell "$CURRENT_DIR/scripts/screen_capture.sh" + tmux bind-key -N "Save pane complete history" "$save_complete_history_key" run-shell "$CURRENT_DIR/scripts/save_complete_history.sh" + tmux bind-key -N "Clear pane history" "$clear_history_key" run-shell "$CURRENT_DIR/scripts/clear_history.sh" } main