mirror of
https://github.com/tmux-plugins/tpm.git
synced 2025-09-06 01:36:59 +00:00
First commit
This commit is contained in:
34
scripts/source_plugins.sh
Executable file
34
scripts/source_plugins.sh
Executable file
@ -0,0 +1,34 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
source "$CURRENT_DIR/shared_functions.sh"
|
||||
|
||||
# Sources all *.tmux files from the plugin directory.
|
||||
# Files are sourced as tmux config files, not as shell scripts!
|
||||
# No errors if the plugin dir does not exist.
|
||||
silently_source_all_tmux_files() {
|
||||
local plugin_path=$1
|
||||
for tmux_file in $plugin_path/*.tmux; do
|
||||
tmux run-shell "source-file $tmux_file 2>&1 1>&/dev/null"
|
||||
done
|
||||
}
|
||||
|
||||
source_plugin() {
|
||||
local plugin=$1
|
||||
local plugin_path=$(shared_plugin_path "$plugin")
|
||||
silently_source_all_tmux_files "$plugin_path"
|
||||
}
|
||||
|
||||
source_plugins() {
|
||||
local plugins=$(shared_get_tpm_plugins_list)
|
||||
for plugin in $plugins; do
|
||||
source_plugin "$plugin"
|
||||
done
|
||||
}
|
||||
|
||||
main() {
|
||||
shared_set_tpm_path_constant
|
||||
source_plugins
|
||||
}
|
||||
main
|
Reference in New Issue
Block a user