2014-05-18 22:35:55 +00:00
|
|
|
# shared functions and constants
|
|
|
|
|
2015-07-06 23:04:26 +00:00
|
|
|
# using @tpm_plugins is now deprecated in favor of using @plugin syntax
|
2014-05-18 22:35:55 +00:00
|
|
|
tpm_plugins_variable_name="@tpm_plugins"
|
|
|
|
|
2015-08-03 13:29:53 +00:00
|
|
|
_tpm_path() {
|
2015-07-29 21:36:49 +00:00
|
|
|
local string_path="$(tmux start-server\; show-environment -g TMUX_PLUGIN_MANAGER_PATH | cut -f2 -d=)/"
|
2015-07-07 16:50:55 +00:00
|
|
|
# manually expanding tilde or `$HOME` variable.
|
|
|
|
string_path="${string_path/#\~/$HOME}"
|
2015-08-03 13:29:53 +00:00
|
|
|
echo "${string_path/#\$HOME/$HOME}"
|
|
|
|
}
|
|
|
|
|
|
|
|
_CACHED_TPM_PATH="$(_tpm_path)"
|
|
|
|
|
|
|
|
tpm_path() {
|
|
|
|
echo "$_CACHED_TPM_PATH"
|
2014-05-18 22:35:55 +00:00
|
|
|
}
|
|
|
|
|
2015-07-06 23:04:26 +00:00
|
|
|
_tmux_conf_contents() {
|
|
|
|
cat /etc/tmux.conf ~/.tmux.conf 2>/dev/null
|
|
|
|
}
|
|
|
|
|
2014-05-18 22:35:55 +00:00
|
|
|
shared_get_tpm_plugins_list() {
|
2015-07-06 23:04:26 +00:00
|
|
|
# DEPRECATED: lists plugins from @tpm_plugins option
|
2015-07-29 21:36:49 +00:00
|
|
|
echo "$(tmux start-server\; show-option -gqv "$tpm_plugins_variable_name")"
|
2015-07-06 23:04:26 +00:00
|
|
|
|
|
|
|
# read set -g @plugin "tmux-plugins/tmux-example-plugin" entries
|
|
|
|
_tmux_conf_contents |
|
|
|
|
awk '/^ *set +-g +@plugin/ { gsub(/'\''/,""); gsub(/'\"'/,""); print $4 }'
|
2014-05-18 22:35:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Allowed plugin name formats:
|
|
|
|
# 1. "git://github.com/user/plugin_name.git"
|
|
|
|
# 2. "user/plugin_name"
|
|
|
|
shared_plugin_name() {
|
2014-08-05 17:02:42 +00:00
|
|
|
local plugin="$1"
|
2014-05-24 21:15:13 +00:00
|
|
|
# get only the part after the last slash, e.g. "plugin_name.git"
|
2014-08-05 17:02:42 +00:00
|
|
|
local plugin_basename="$(basename "$plugin")"
|
2014-05-24 21:15:13 +00:00
|
|
|
# remove ".git" extension (if it exists) to get only "plugin_name"
|
2014-08-05 17:02:42 +00:00
|
|
|
local plugin_name="${plugin_basename%.git}"
|
|
|
|
echo "$plugin_name"
|
2014-05-18 22:35:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
shared_plugin_path() {
|
2015-08-02 23:22:06 +00:00
|
|
|
local plugin="$1"
|
2015-08-02 22:42:03 +00:00
|
|
|
local plugin_name="$(shared_plugin_name "$plugin")"
|
2015-08-03 13:29:53 +00:00
|
|
|
echo "$(tpm_path)${plugin_name}/"
|
2014-05-18 22:35:55 +00:00
|
|
|
}
|
2014-08-05 16:45:59 +00:00
|
|
|
|
|
|
|
plugin_already_installed() {
|
2014-08-05 17:02:42 +00:00
|
|
|
local plugin="$1"
|
|
|
|
local plugin_path="$(shared_plugin_path "$plugin")"
|
2015-07-31 21:23:57 +00:00
|
|
|
[ -d "$plugin_path" ] &&
|
|
|
|
cd "$plugin_path" &&
|
2014-08-05 16:45:59 +00:00
|
|
|
git remote >/dev/null 2>&1
|
|
|
|
}
|
2014-08-05 17:02:42 +00:00
|
|
|
|
2015-07-29 19:59:30 +00:00
|
|
|
ensure_tpm_path_exists() {
|
2015-08-03 13:29:53 +00:00
|
|
|
mkdir -p "$(tpm_path)"
|
2015-07-29 19:59:30 +00:00
|
|
|
}
|
2015-07-29 21:36:49 +00:00
|
|
|
|
|
|
|
fail_helper() {
|
|
|
|
local message="$1"
|
|
|
|
echo "$message" >&2
|
|
|
|
FAIL="true"
|
|
|
|
}
|
|
|
|
|
|
|
|
exit_value_helper() {
|
|
|
|
if [ "$FAIL" == "true" ]; then
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
}
|