dotfiles/dot_tmux/plugins/tmux-copycat/scripts/executable_copycat_mode_quit.sh
2023-11-13 13:48:17 +01:00

14 lines
239 B
Bash

#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source "$CURRENT_DIR/helpers.sh"
main() {
if in_copycat_mode; then
reset_copycat_position
unset_copycat_mode
copycat_decrease_counter
fi
}
main