diff --git a/bindings/update_plugins b/bindings/update_plugins index 8626a73..f4f441f 100755 --- a/bindings/update_plugins +++ b/bindings/update_plugins @@ -14,22 +14,22 @@ source "$SCRIPTS_DIR/shared_functions.sh" display_plugin_update_list() { local plugins="$(shared_get_tpm_plugins_list)" - echo_message "Installed plugins:" - echo_message "" + tmux_echo "Installed plugins:" + tmux_echo "" for plugin in $plugins; do # displaying only installed plugins if plugin_already_installed "$plugin"; then local plugin_name="$(shared_plugin_name "$plugin")" - echo_message " $plugin_name" + tmux_echo " $plugin_name" fi done - echo_message "" - echo_message "Type plugin name to update it." - echo_message "" - echo_message "- \"all\" - updates all plugins" - echo_message "- ENTER - cancels" + tmux_echo "" + tmux_echo "Type plugin name to update it." + tmux_echo "" + tmux_echo "- \"all\" - updates all plugins" + tmux_echo "- ENTER - cancels" } update_plugin_prompt() { diff --git a/scripts/clean_plugins.sh b/scripts/clean_plugins.sh index 88d9bdf..2433ad3 100755 --- a/scripts/clean_plugins.sh +++ b/scripts/clean_plugins.sh @@ -15,11 +15,11 @@ use_tmux_echo() { if use_tmux_echo; then # use tmux specific echo-ing echo_ok() { - echo_message "$*" + tmux_echo "$*" } echo_err() { - echo_message "$*" + tmux_echo "$*" } else echo_ok() { diff --git a/scripts/install_plugins.sh b/scripts/install_plugins.sh index 5056f07..b1fcc87 100755 --- a/scripts/install_plugins.sh +++ b/scripts/install_plugins.sh @@ -15,11 +15,11 @@ use_tmux_echo() { if use_tmux_echo; then # use tmux specific echo-ing echo_ok() { - echo_message "$*" + tmux_echo "$*" } echo_err() { - echo_message "$*" + tmux_echo "$*" } else echo_ok() { diff --git a/scripts/shared_functions.sh b/scripts/shared_functions.sh index 37b8ee7..58b6b4b 100644 --- a/scripts/shared_functions.sh +++ b/scripts/shared_functions.sh @@ -45,7 +45,7 @@ shared_plugin_path() { # TMUX messaging is weird. You only get a nice clean pane if you do it with # `run-shell` command. -echo_message() { +tmux_echo() { local message="$1" tmux run-shell "echo '$message'" } @@ -63,10 +63,10 @@ plugin_already_installed() { } end_message() { - echo_message "" - echo_message "TMUX environment reloaded." - echo_message "" - echo_message "Done, press ENTER to continue." + tmux_echo "" + tmux_echo "TMUX environment reloaded." + tmux_echo "" + tmux_echo "Done, press ENTER to continue." } ensure_tpm_path_exists() { diff --git a/scripts/update_plugin.sh b/scripts/update_plugin.sh index 4a3f8c6..a89a44a 100755 --- a/scripts/update_plugin.sh +++ b/scripts/update_plugin.sh @@ -18,11 +18,11 @@ use_tmux_echo() { if use_tmux_echo; then # use tmux specific echo-ing echo_ok() { - echo_message "$*" + tmux_echo "$*" } echo_err() { - echo_message "$*" + tmux_echo "$*" } else echo_ok() {