Tmux echo function rename

This commit is contained in:
Bruno Sutic 2015-08-03 01:25:51 +02:00
parent 3347871a03
commit 516a6ea4c4
No known key found for this signature in database
GPG Key ID: 66D96E4F2F7EF26C
5 changed files with 19 additions and 19 deletions

View File

@ -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() {

View File

@ -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() {

View File

@ -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() {

View File

@ -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() {

View File

@ -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() {