gitextract_r8jmagbk/ ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.md ├── HOW_TO_PLUGIN.md ├── LICENSE.md ├── README.md ├── bin/ │ ├── clean_plugins │ ├── install_plugins │ └── update_plugins ├── bindings/ │ ├── clean_plugins │ ├── install_plugins │ └── update_plugins ├── docs/ │ ├── automatic_tpm_installation.md │ ├── changing_plugins_install_dir.md │ ├── how_to_create_plugin.md │ ├── managing_plugins_via_cmd_line.md │ └── tpm_not_working.md ├── scripts/ │ ├── check_tmux_version.sh │ ├── clean_plugins.sh │ ├── helpers/ │ │ ├── plugin_functions.sh │ │ ├── shell_echo_functions.sh │ │ ├── tmux_echo_functions.sh │ │ ├── tmux_utils.sh │ │ └── utility.sh │ ├── install_plugins.sh │ ├── source_plugins.sh │ ├── update_plugin.sh │ ├── update_plugin_prompt_handler.sh │ └── variables.sh ├── tests/ │ ├── expect_failed_plugin_download │ ├── expect_successful_clean_plugins │ ├── expect_successful_multiple_plugins_download │ ├── expect_successful_plugin_download │ ├── expect_successful_update_of_a_single_plugin │ ├── expect_successful_update_of_all_plugins │ ├── helpers/ │ │ └── tpm.sh │ ├── test_plugin_clean.sh │ ├── test_plugin_installation.sh │ ├── test_plugin_installation_legacy.sh │ ├── test_plugin_sourcing.sh │ └── test_plugin_update.sh └── tpm