More bugfixing

This commit is contained in:
Bruno Sutic
2015-02-12 15:52:10 +01:00
parent 7d2dc62a0c
commit 1588471ed0
3 changed files with 8 additions and 4 deletions

View File

@ -6,6 +6,10 @@ source "$CURRENT_DIR/helpers.sh"
source "$CURRENT_DIR/variables.sh"
source "$CURRENT_DIR/shared.sh"
supported_tmux_version_ok() {
$CURRENT_DIR/check_tmux_version.sh "$SUPPORTED_VERSION"
}
get_interval() {
get_tmux_option "$auto_save_interval_option" "$auto_save_interval_default"
}

View File

@ -5,7 +5,3 @@ current_timestamp() {
set_last_save_timestamp() {
set_tmux_option "$last_auto_save_option" "$(current_timestamp)"
}
supported_tmux_version_ok() {
$CURRENT_DIR/check_tmux_version.sh "$SUPPORTED_VERSION"
}