tpm/scripts/source_plugins.sh

42 lines
1000 B
Bash
Raw Normal View History

2014-05-19 00:35:55 +02:00
#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2015-08-03 17:40:50 +02:00
HELPERS_DIR="$CURRENT_DIR/helpers"
2014-05-19 00:35:55 +02:00
2015-08-03 17:40:50 +02:00
source "$HELPERS_DIR/plugin_functions.sh"
2014-05-19 00:35:55 +02:00
plugin_dir_exists() {
[ -d "$1" ]
}
# Runs all *.tmux files from the plugin directory.
# Files are ran as executables.
2014-05-19 00:35:55 +02:00
# No errors if the plugin dir does not exist.
silently_source_all_tmux_files() {
2015-08-03 15:18:26 +02:00
local plugin_path="$1"
2014-05-24 23:15:13 +02:00
local plugin_tmux_files="$plugin_path*.tmux"
if plugin_dir_exists "$plugin_path"; then
for tmux_file in $plugin_tmux_files; do
2014-11-18 23:12:10 +01:00
# if the glob didn't find any files this will be the
# unexpanded glob which obviously doesn't exist
[ -f "$tmux_file" ] || continue
# runs *.tmux file as an executable
$tmux_file >/dev/null 2>&1
done
fi
2014-05-19 00:35:55 +02:00
}
source_plugins() {
2015-08-03 15:18:26 +02:00
local plugin plugin_path
2015-08-03 17:40:50 +02:00
local plugins="$(tpm_plugins_list_helper)"
2014-05-24 23:15:13 +02:00
for plugin in $plugins; do
2015-08-03 17:40:50 +02:00
plugin_path="$(plugin_path_helper "$plugin")"
2015-08-03 15:18:26 +02:00
silently_source_all_tmux_files "$plugin_path"
2014-05-24 23:15:13 +02:00
done
2014-05-19 00:35:55 +02:00
}
main() {
2014-05-24 23:15:13 +02:00
source_plugins
2014-05-19 00:35:55 +02:00
}
main