Compare commits

..

No commits in common. "master" and "v3.0.0" have entirely different histories.

21 changed files with 87 additions and 320 deletions

9
.gitattributes vendored
View File

@ -1,9 +0,0 @@
# Force text files to have unix eols, so Windows/Cygwin does not break them
*.* eol=lf
# These files are unfortunately not recognized as text files so
# explicitly listing them here
tpm eol=lf
bin/* eol=lf
bindings/* eol=lf
tests/* eol=lf

View File

@ -1,14 +1,11 @@
# generic packages and tmux # generic packages and latest Tmux 1.9a
before_install: before_install:
- sudo apt-get update - sudo apt-get update
- sudo apt-get install -y git-core expect - sudo apt-get install -y git-core expect
- sudo apt-get install -y python-software-properties software-properties-common - sudo apt-get install -y python-software-properties software-properties-common
- sudo apt-get install -y libevent-dev libncurses-dev - sudo add-apt-repository -y ppa:pi-rho/dev
- git clone https://github.com/tmux/tmux.git - sudo apt-get update
- cd tmux - sudo apt-get install -y tmux=1.9a-1~ppa1~p
- git checkout 2.0
- sh autogen.sh
- ./configure && make && sudo make install
install: install:
- git fetch --unshallow --recurse-submodules || git fetch --recurse-submodules - git fetch --unshallow --recurse-submodules || git fetch --recurse-submodules

View File

@ -2,17 +2,6 @@
### master ### master
### v3.1.0, 2023-01-03
- upgrade to new version of `tmux-test`
- bug: when using `emacs` copy mode, Enter does not quit screen after tpm
installation/update. Fix by making `Escape` the key for emacs mode.
- add a doc with troubleshooting instructions
- add `.gitattributes` file that forces linefeed characters (classic `\n`) as
line endings - helps with misconfigured git on windows/cygwin
- readme update: announce Cygwin support
- un-deprecate old plugin definition syntax: `set -g @tpm_plugins`
- More stuff, check `git log`.
### v3.0.0, 2015-08-03 ### v3.0.0, 2015-08-03
- refactor `shared_set_tpm_path_constant` function - refactor `shared_set_tpm_path_constant` function
- move all instructions to `docs/` dir - move all instructions to `docs/` dir
@ -31,7 +20,7 @@
- enable overriding default key bindings - enable overriding default key bindings
- start using `C-c` to clear screen - start using `C-c` to clear screen
- add uninstall/clean procedure and keybinding (prefix+alt+u) (@chilicuil) - add uninstall/clean procedure and keybinding (prefix+alt+u) (@chilicuil)
- add new `set @plugin 'repo'` plugin definition syntax (@chilicuil) - add new `set @plugin 'repo'` plugin defintion syntax (@chilicuil)
- revert back to using `-g` flag in new plugin definition syntax - revert back to using `-g` flag in new plugin definition syntax
- permit leading whitespace with new plugin definition syntax (thanks @chilicuil) - permit leading whitespace with new plugin definition syntax (thanks @chilicuil)
- make sure `TMUX_PLUGIN_MANAGER_PATH` always has trailng slash - make sure `TMUX_PLUGIN_MANAGER_PATH` always has trailng slash

View File

@ -1,12 +1,8 @@
# Tmux Plugin Manager # Tmux Plugin Manager
[![Build Status](https://travis-ci.org/tmux-plugins/tpm.svg?branch=master)](https://travis-ci.org/tmux-plugins/tpm) [![Build Status](https://travis-ci.org/tmux-plugins/tpm.png?branch=master)](https://travis-ci.org/tmux-plugins/tpm)
Installs and loads `tmux` plugins. Installs and loads TMUX plugins.
Tested and working on Linux, OSX, and Cygwin.
See list of plugins [here](https://github.com/tmux-plugins/list).
### Installation ### Installation
@ -14,67 +10,64 @@ Requirements: `tmux` version 1.9 (or higher), `git`, `bash`.
Clone TPM: Clone TPM:
```bash $ git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
```
Put this at the bottom of `~/.tmux.conf` (`$XDG_CONFIG_HOME/tmux/tmux.conf` Put this at the bottom of `.tmux.conf`:
works too):
```bash
# List of plugins # List of plugins
set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'tmux-plugins/tmux-sensible'
# Other examples: # Other examples:
# set -g @plugin 'github_username/plugin_name' # set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'github_username/plugin_name#branch' # set -g @plugin 'git@github.com/user/plugin'
# set -g @plugin 'git@github.com:user/plugin' # set -g @plugin 'git@bitbucket.com/user/plugin'
# set -g @plugin 'git@bitbucket.com:user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm' run '~/.tmux/plugins/tpm/tpm'
```
Reload TMUX environment so TPM is sourced: Reload TMUX environment so TPM is sourced:
```bash # type this in terminal
# type this in terminal if tmux is already running $ tmux source ~/.tmux.conf
tmux source ~/.tmux.conf
```
That's it! That's it!
(**Note:** using `set -g @tpm_plugins` is deprecated, but still works alongside
new syntax)
### Installing plugins ### Installing plugins
1. Add new plugin to `~/.tmux.conf` with `set -g @plugin '...'` 1. add new plugin to `.tmux.conf` with `set -g @plugin '...'`
2. Press `prefix` + <kbd>I</kbd> (capital i, as in **I**nstall) to fetch the plugin. 2. hit `prefix + I` (I as in **I**nstall) to fetch the plugin
You're good to go! The plugin was cloned to `~/.tmux/plugins/` dir and sourced. You're good to go! The plugin was cloned to `~/.tmux/plugins/` dir and sourced.
### Uninstalling plugins ### Uninstalling plugins
1. Remove (or comment out) plugin from the list. 1. remove (or comment out) plugin from the list
2. Press `prefix` + <kbd>alt</kbd> + <kbd>u</kbd> (lowercase u as in **u**ninstall) to remove the plugin. 2. hit `prefix + alt + u` (u as in **u**install) to remove the plugin
All the plugins are installed to `~/.tmux/plugins/` so alternatively you can All the plugins are installed to `~/.tmux/plugins/` so alternatively you can
find plugin directory there and remove it. find plugin directory there and remove it.
### Key bindings ### Key bindings
`prefix` + <kbd>I</kbd> `prefix + I`
- Installs new plugins from GitHub or any other git repository - installs new plugins from github or any other git repo
- Refreshes TMUX environment - refreshes TMUX environment
`prefix` + <kbd>U</kbd> `prefix + U`
- updates plugin(s) - updates plugin(s)
`prefix` + <kbd>alt</kbd> + <kbd>u</kbd> `prefix + alt + u`
- remove/uninstall plugins not on the plugin list - remove/uninstall plugins not on the plugin list
### Docs ### More plugins
- [Help, tpm not working](docs/tpm_not_working.md) - problem solutions For more plugins, check [here](https://github.com/tmux-plugins).
### Docs
More advanced features and instructions, regular users probably do not need More advanced features and instructions, regular users probably do not need
this: this:
@ -86,15 +79,27 @@ this:
### Tests ### Tests
Tests for this project run on [Travis CI](https://travis-ci.org/tmux-plugins/tpm). Tests for this project run on [travis](https://travis-ci.org/tmux-plugins/tpm).
When run locally, [vagrant](https://www.vagrantup.com/) is required. When run locally, [vagrant](https://www.vagrantup.com/) is required.
Run tests with: Run tests with:
```bash
# within project directory # within project directory
./run_tests $ ./run_tests
```
### Other goodies
- [tmux-copycat](https://github.com/tmux-plugins/tmux-copycat) - a plugin for
regex searches in tmux and fast match selection
- [tmux-yank](https://github.com/tmux-plugins/tmux-yank) - enables copying
highlighted text to system clipboard
- [tmux-open](https://github.com/tmux-plugins/tmux-open) - a plugin for quickly
opening highlighted file or a url
- [tmux-continuum](https://github.com/tmux-plugins/tmux-continuum) - automatic
restoring and continuous saving of tmux env
You might want to follow [@brunosutic](https://twitter.com/brunosutic) on
twitter if you want to hear about new tmux plugins or feature updates.
### License ### License

View File

@ -2,11 +2,11 @@
One of the first things we do on a new machine is cloning our dotfiles. Not everything comes with them though, so for example `tpm` most likely won't be installed. One of the first things we do on a new machine is cloning our dotfiles. Not everything comes with them though, so for example `tpm` most likely won't be installed.
If you want to install `tpm` and plugins automatically when tmux is started, put the following snippet in `.tmux.conf` before the final `run '~/.tmux/plugins/tpm/tpm'`: If you wanna install `tpm` automatically when tmux is started, put the following snippet in `.tmux.conf` before the final `run '~/.tmux/plugins/tpm/tpm'`:
``` ```
if "test ! -d ~/.tmux/plugins/tpm" \ if "test ! -d ~/.tmux/plugins/tpm" \
"run 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm && ~/.tmux/plugins/tpm/bin/install_plugins'" "run 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm'"
``` ```
This useful tip was submitted by @acr4 and narfman0. This useful tip was submitted by @acr4.

View File

@ -1,8 +1,6 @@
# Changing plugins install dir # Changing plugins install dir
By default, TPM installs plugins in a subfolder named `plugins/` inside By default, TPM installs plugins to `~/.tmux/plugins/`.
`$XDG_CONFIG_HOME/tmux/` if a `tmux.conf` file was found at that location, or
inside `~/.tmux/` otherwise.
You can change the install path by putting this in `.tmux.conf`: You can change the install path by putting this in `.tmux.conf`:

View File

@ -27,7 +27,7 @@ directory. That's how plugins are run.
Create a plugin run file in plugin directory: Create a plugin run file in plugin directory:
$ touch my_plugin.tmux $ touch my_plugin.tmux
$ chmod u+x my_plugin.tmux $ chmod +x my_plugin.tmux
You can have more than one `*.tmux` file, and all will get executed. However, usually You can have more than one `*.tmux` file, and all will get executed. However, usually
you'll need just one. you'll need just one.
@ -69,7 +69,7 @@ Now that we have the binding, let's create a script that's invoked with
$ mkdir scripts $ mkdir scripts
$ touch scripts/tmux_list_plugins.sh $ touch scripts/tmux_list_plugins.sh
$ chmod u+x scripts/tmux_list_plugins.sh $ chmod +x scripts/tmux_list_plugins.sh
And here's the script content: And here's the script content:
@ -92,17 +92,17 @@ That should set up the key binding. Now hit `prefix + T` and see if it works.
### 6. publish the plugin ### 6. publish the plugin
When everything is ready, push the plugin to an online git repository, When everything is ready, push the plugin to an online git repository,
preferably GitHub. preferably Github.
Other users can install your plugin by just adding plugin git URL to the Other users can install your plugin by just adding plugin git URL to the
`@plugin` list in their `.tmux.conf`. `@plugin` list in their `.tmux.conf`.
If the plugin is on GitHub, your users will be able to use the shorthand of If the plugin is on Github, your users will be able to use the shorthand of
`github_username/repository`. `github_username/repository`.
### Conclusion ### Conclusion
Hopefully, that was easy. As you can see, it's mostly shell scripting. Hopefully, that was easy. As you can see, it's mostly shell scripting.
You can use other scripting languages (ruby, python etc) but plain old shell You can use other scripting languages (ruby, phyton etc) but plain old shell
is preferred because of portability. is preferred because of portability.

View File

@ -1,102 +0,0 @@
# Help, tpm not working!
Here's the list of issues users had with `tpm`:
<hr />
> Nothing works. `tpm` key bindings `prefix + I`, `prefix + U` not even
defined.
Related [issue #22](https://github.com/tmux-plugins/tpm/issues/22)
- Do you have required `tmux` version to run `tpm`?<br/>
Check `tmux` version with `$ tmux -V` command and make sure it's higher or
equal to the required version for `tpm` as stated in the readme.
- ZSH tmux plugin might be causing issues.<br/>
If you have it installed, try disabling it and see if `tpm` works then.
<hr />
> Help, I'm using custom config file with `tmux -f /path/to/my_tmux.conf`
to start Tmux and for some reason plugins aren't loaded!?
Related [issue #57](https://github.com/tmux-plugins/tpm/issues/57)
`tpm` has a known issue when using custom config file with `-f` option.
The solution is to use alternative plugin definition syntax. Here are the steps
to make it work:
1. remove all `set -g @plugin` lines from tmux config file
2. in the config file define the plugins in the following way:
# List of plugins
set -g @tpm_plugins ' \
tmux-plugins/tpm \
tmux-plugins/tmux-sensible \
tmux-plugins/tmux-resurrect \
'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
3. Reload TMUX environment so TPM is sourced: `$ tmux source /path/to/my_tmux.conf`
The plugins should now be working.
<hr />
> Weird sequence of characters show up when installing or updating plugins
Related: [issue #25](https://github.com/tmux-plugins/tpm/issues/25)
- This could be caused by [tmuxline.vim](https://github.com/edkolev/tmuxline.vim)
plugin. Uninstall it and see if things work.
<hr />
> "failed to connect to server" error when sourcing .tmux.conf
Related: [issue #48](https://github.com/tmux-plugins/tpm/issues/48)
- Make sure `tmux source ~/.tmux.conf` command is ran from inside `tmux`.
<hr />
> tpm not working: '~/.tmux/plugins/tpm/tpm' returned 2 (Windows / Cygwin)
Related: [issue #81](https://github.com/tmux-plugins/tpm/issues/81)
This issue is most likely caused by Windows line endings. For example, if you
have git's `core.autocrlf` option set to `true`, git will automatically convert
all the files to Windows line endings which might cause a problem.
The solution is to convert all line ending to Unix newline characters. This
command handles that for all files under `.tmux/` dir (skips `.git`
subdirectories):
```bash
find ~/.tmux -type d -name '.git*' -prune -o -type f -print0 | xargs -0 dos2unix
```
<hr />
> '~/.tmux/plugins/tpm/tpm' returned 127 (on macOS, w/ tmux installed using brew)
Related: [issue #67](https://github.com/tmux-plugins/tpm/issues/67)
This problem is because tmux's `run-shell` command runs a shell which doesn't read from user configs, thus tmux installed in a brew prefix (e.g. `/usr/local/bin`) will not be found.
The solution is to find your brew prefix
```sh
> echo "$(brew --prefix)/bin"
/opt/homebrew/bin
```
And prepend it to the `PATH` environment variable
```
set-environment -g PATH "/opt/homebrew/bin:/bin:/usr/bin"
```
before any `run-shell`/`run` commands in `~/.tmux.conf`.

@ -1 +1 @@
Subproject commit 33fa65fbfb72ba6dd106c21bf5ee6cc353ecdbb6 Subproject commit 6ad204cbac3c66ecfda86e923e8d08648c977f4b

View File

@ -15,26 +15,8 @@ _tpm_path() {
_CACHED_TPM_PATH="$(_tpm_path)" _CACHED_TPM_PATH="$(_tpm_path)"
# Get the absolute path to the users configuration file of TMux.
# This includes a prioritized search on different locations.
#
_get_user_tmux_conf() {
# Define the different possible locations.
xdg_location="${XDG_CONFIG_HOME:-$HOME/.config}/tmux/tmux.conf"
default_location="$HOME/.tmux.conf"
# Search for the correct configuration file by priority.
if [ -f "$xdg_location" ]; then
echo "$xdg_location"
else
echo "$default_location"
fi
}
_tmux_conf_contents() { _tmux_conf_contents() {
user_config=$(_get_user_tmux_conf) cat /etc/tmux.conf ~/.tmux.conf 2>/dev/null
cat /etc/tmux.conf "$user_config" 2>/dev/null
if [ "$1" == "full" ]; then # also output content from sourced files if [ "$1" == "full" ]; then # also output content from sourced files
local file local file
for file in $(_sourced_files); do for file in $(_sourced_files); do
@ -46,35 +28,22 @@ _tmux_conf_contents() {
# return files sourced from tmux config files # return files sourced from tmux config files
_sourced_files() { _sourced_files() {
_tmux_conf_contents | _tmux_conf_contents |
sed -E -n -e "s/^[[:space:]]*source(-file)?[[:space:]]+(-q+[[:space:]]+)?['\"]?([^'\"]+)['\"]?/\3/p" awk '/^ *source(-file)? +/ { gsub(/'\''/,""); gsub(/'\"'/,""); print $2 }'
}
# Want to be able to abort in certain cases
trap "exit 1" TERM
export TOP_PID=$$
_fatal_error_abort() {
echo >&2 "Aborting."
kill -s TERM $TOP_PID
} }
# PUBLIC FUNCTIONS BELOW # PUBLIC FUNCTIONS BELOW
tpm_path() { tpm_path() {
if [ "$_CACHED_TPM_PATH" == "/" ]; then
echo >&2 "FATAL: Tmux Plugin Manager not configured in tmux.conf"
_fatal_error_abort
fi
echo "$_CACHED_TPM_PATH" echo "$_CACHED_TPM_PATH"
} }
tpm_plugins_list_helper() { tpm_plugins_list_helper() {
# lists plugins from @tpm_plugins option # DEPRECATED: lists plugins from @tpm_plugins option
echo "$(tmux start-server\; show-option -gqv "$tpm_plugins_variable_name")" echo "$(tmux start-server\; show-option -gqv "$tpm_plugins_variable_name")"
# read set -g @plugin "tmux-plugins/tmux-example-plugin" entries # read set -g @plugin "tmux-plugins/tmux-example-plugin" entries
_tmux_conf_contents "full" | _tmux_conf_contents "full" |
awk '/^[ \t]*set(-option)? +-g +@plugin/ { gsub(/'\''/,""); gsub(/'\"'/,""); print $4 }' awk '/^ *set +-g +@plugin/ { gsub(/'\''/,""); gsub(/'\"'/,""); print $4 }'
} }
# Allowed plugin name formats: # Allowed plugin name formats:

View File

@ -1,7 +1,3 @@
_has_emacs_mode_keys() {
$(tmux show -gw mode-keys | grep -q emacs)
}
tmux_echo() { tmux_echo() {
local message="$1" local message="$1"
tmux run-shell "echo '$message'" tmux run-shell "echo '$message'"
@ -16,13 +12,8 @@ echo_err() {
} }
end_message() { end_message() {
if _has_emacs_mode_keys; then
local continue_key="ESCAPE"
else
local continue_key="ENTER"
fi
tmux_echo "" tmux_echo ""
tmux_echo "TMUX environment reloaded." tmux_echo "TMUX environment reloaded."
tmux_echo "" tmux_echo ""
tmux_echo "Done, press $continue_key to continue." tmux_echo "Done, press ENTER to continue."
} }

View File

@ -1,6 +1,3 @@
HELPERS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source "$HELPERS_DIR/plugin_functions.sh"
reload_tmux_environment() { reload_tmux_environment() {
tmux source-file $(_get_user_tmux_conf) >/dev/null 2>&1 tmux source-file ~/.tmux.conf >/dev/null 2>&1
} }

View File

@ -14,37 +14,29 @@ fi
clone() { clone() {
local plugin="$1" local plugin="$1"
local branch="$2"
if [ -n "$branch" ]; then
cd "$(tpm_path)" && cd "$(tpm_path)" &&
GIT_TERMINAL_PROMPT=0 git clone -b "$branch" --single-branch --recursive "$plugin" >/dev/null 2>&1 GIT_TERMINAL_PROMPT=0 git clone --recursive "$plugin" >/dev/null 2>&1
else
cd "$(tpm_path)" &&
GIT_TERMINAL_PROMPT=0 git clone --single-branch --recursive "$plugin" >/dev/null 2>&1
fi
} }
# tries cloning: # tries cloning:
# 1. plugin name directly - works if it's a valid git url # 1. plugin name directly - works if it's a valid git url
# 2. expands the plugin name to point to a GitHub repo and tries cloning again # 2. expands the plugin name to point to a github repo and tries cloning again
clone_plugin() { clone_plugin() {
local plugin="$1" local plugin="$1"
local branch="$2" clone "$plugin" ||
clone "$plugin" "$branch" || clone "https://git::@github.com/$plugin"
clone "https://git::@github.com/$plugin" "$branch"
} }
# clone plugin and produce output # clone plugin and produce output
install_plugin() { install_plugin() {
local plugin="$1" local plugin="$1"
local branch="$2"
local plugin_name="$(plugin_name_helper "$plugin")" local plugin_name="$(plugin_name_helper "$plugin")"
if plugin_already_installed "$plugin"; then if plugin_already_installed "$plugin"; then
echo_ok "Already installed \"$plugin_name\"" echo_ok "Already installed \"$plugin_name\""
else else
echo_ok "Installing \"$plugin_name\"" echo_ok "Installing \"$plugin_name\""
clone_plugin "$plugin" "$branch" && clone_plugin "$plugin" &&
echo_ok " \"$plugin_name\" download success" || echo_ok " \"$plugin_name\" download success" ||
echo_err " \"$plugin_name\" download fail" echo_err " \"$plugin_name\" download fail"
fi fi
@ -53,8 +45,7 @@ install_plugin() {
install_plugins() { install_plugins() {
local plugins="$(tpm_plugins_list_helper)" local plugins="$(tpm_plugins_list_helper)"
for plugin in $plugins; do for plugin in $plugins; do
IFS='#' read -ra plugin <<< "$plugin" install_plugin "$plugin"
install_plugin "${plugin[0]}" "${plugin[1]}"
done done
} }

View File

@ -30,8 +30,7 @@ source_plugins() {
local plugin plugin_path local plugin plugin_path
local plugins="$(tpm_plugins_list_helper)" local plugins="$(tpm_plugins_list_helper)"
for plugin in $plugins; do for plugin in $plugins; do
IFS='#' read -ra plugin <<< "$plugin" plugin_path="$(plugin_path_helper "$plugin")"
plugin_path="$(plugin_path_helper "${plugin[0]}")"
silently_source_all_tmux_files "$plugin_path" silently_source_all_tmux_files "$plugin_path"
done done
} }

View File

@ -26,15 +26,11 @@ pull_changes() {
} }
update() { update() {
local plugin="$1" output local plugin="$1"
output=$(pull_changes "$plugin" 2>&1) echo_ok "Updating \"$plugin\""
if (( $? == 0 )); then $(pull_changes "$plugin" > /dev/null 2>&1) &&
echo_ok " \"$plugin\" update success" echo_ok " \"$plugin\" update success" ||
echo_ok "$(echo "$output" | sed -e 's/^/ | /')"
else
echo_err " \"$plugin\" update fail" echo_err " \"$plugin\" update fail"
echo_err "$(echo "$output" | sed -e 's/^/ | /')"
fi
} }
update_all() { update_all() {
@ -42,32 +38,27 @@ update_all() {
echo_ok "" echo_ok ""
local plugins="$(tpm_plugins_list_helper)" local plugins="$(tpm_plugins_list_helper)"
for plugin in $plugins; do for plugin in $plugins; do
IFS='#' read -ra plugin <<< "$plugin" local plugin_name="$(plugin_name_helper "$plugin")"
local plugin_name="$(plugin_name_helper "${plugin[0]}")"
# updating only installed plugins # updating only installed plugins
if plugin_already_installed "$plugin_name"; then if plugin_already_installed "$plugin_name"; then
update "$plugin_name" & update "$plugin_name"
fi fi
done done
wait
} }
update_plugins() { update_plugins() {
local plugins="$*" local plugins="$*"
for plugin in $plugins; do for plugin in $plugins; do
IFS='#' read -ra plugin <<< "$plugin" local plugin_name="$(plugin_name_helper "$plugin")"
local plugin_name="$(plugin_name_helper "${plugin[0]}")"
if plugin_already_installed "$plugin_name"; then if plugin_already_installed "$plugin_name"; then
update "$plugin_name" & update "$plugin_name"
else else
echo_err "$plugin_name not installed!" & echo_err "$plugin_name not installed!"
fi fi
done done
wait
} }
main() { main() {
ensure_tpm_path_exists
if [ "$1" == "all" ]; then if [ "$1" == "all" ]; then
update_all update_all
else else

View File

@ -18,7 +18,6 @@ manually_install_the_plugin() {
test_plugin_uninstallation_via_tmux_key_binding() { test_plugin_uninstallation_via_tmux_key_binding() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
HERE HERE
@ -34,7 +33,6 @@ test_plugin_uninstallation_via_tmux_key_binding() {
test_plugin_uninstallation_via_script() { test_plugin_uninstallation_via_script() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
HERE HERE
@ -48,7 +46,6 @@ test_plugin_uninstallation_via_script() {
test_unsuccessful_plugin_uninstallation_via_script() { test_unsuccessful_plugin_uninstallation_via_script() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
HERE HERE

View File

@ -15,7 +15,6 @@ source "$CURRENT_DIR/helpers/tpm.sh"
test_plugin_installation_via_tmux_key_binding() { test_plugin_installation_via_tmux_key_binding() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set -g @plugin "tmux-plugins/tmux-example-plugin" set -g @plugin "tmux-plugins/tmux-example-plugin"
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
HERE HERE
@ -29,25 +28,8 @@ test_plugin_installation_via_tmux_key_binding() {
teardown_helper teardown_helper
} }
test_plugin_installation_via_tmux_key_binding_set_option() {
set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set-option -g @plugin "tmux-plugins/tmux-example-plugin"
run-shell "$TPM_DIR/tpm"
HERE
"$CURRENT_DIR/expect_successful_plugin_download" ||
fail_helper "[key-binding][set-option] plugin installation fails"
check_dir_exists_helper "$PLUGINS_DIR/tmux-example-plugin/" ||
fail_helper "[key-binding][set-option] plugin download fails"
teardown_helper
}
test_plugin_installation_custom_dir_via_tmux_key_binding() { test_plugin_installation_custom_dir_via_tmux_key_binding() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set-environment -g TMUX_PLUGIN_MANAGER_PATH '$CUSTOM_PLUGINS_DIR' set-environment -g TMUX_PLUGIN_MANAGER_PATH '$CUSTOM_PLUGINS_DIR'
set -g @plugin "tmux-plugins/tmux-example-plugin" set -g @plugin "tmux-plugins/tmux-example-plugin"
@ -66,7 +48,6 @@ test_plugin_installation_custom_dir_via_tmux_key_binding() {
test_non_existing_plugin_installation_via_tmux_key_binding() { test_non_existing_plugin_installation_via_tmux_key_binding() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set -g @plugin "tmux-plugins/non-existing-plugin" set -g @plugin "tmux-plugins/non-existing-plugin"
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
HERE HERE
@ -79,7 +60,6 @@ test_non_existing_plugin_installation_via_tmux_key_binding() {
test_multiple_plugins_installation_via_tmux_key_binding() { test_multiple_plugins_installation_via_tmux_key_binding() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set -g @plugin "tmux-plugins/tmux-example-plugin" set -g @plugin "tmux-plugins/tmux-example-plugin"
\ \ set -g @plugin 'tmux-plugins/tmux-copycat' \ \ set -g @plugin 'tmux-plugins/tmux-copycat'
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
@ -99,7 +79,6 @@ test_multiple_plugins_installation_via_tmux_key_binding() {
test_plugins_installation_from_sourced_file_via_tmux_key_binding() { test_plugins_installation_from_sourced_file_via_tmux_key_binding() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
source '$ADDITIONAL_CONFIG_FILE_1' source '$ADDITIONAL_CONFIG_FILE_1'
set -g @plugin 'tmux-plugins/tmux-example-plugin' set -g @plugin 'tmux-plugins/tmux-example-plugin'
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
@ -122,7 +101,6 @@ test_plugins_installation_from_sourced_file_via_tmux_key_binding() {
test_plugins_installation_from_multiple_sourced_files_via_tmux_key_binding() { test_plugins_installation_from_multiple_sourced_files_via_tmux_key_binding() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
\ \ source '$ADDITIONAL_CONFIG_FILE_1' \ \ source '$ADDITIONAL_CONFIG_FILE_1'
source-file '$ADDITIONAL_CONFIG_FILE_2' source-file '$ADDITIONAL_CONFIG_FILE_2'
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
@ -148,7 +126,6 @@ test_plugins_installation_from_multiple_sourced_files_via_tmux_key_binding() {
test_plugin_installation_via_script() { test_plugin_installation_via_script() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set -g @plugin "tmux-plugins/tmux-example-plugin" set -g @plugin "tmux-plugins/tmux-example-plugin"
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
HERE HERE
@ -167,7 +144,6 @@ test_plugin_installation_via_script() {
test_plugin_installation_custom_dir_via_script() { test_plugin_installation_custom_dir_via_script() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set-environment -g TMUX_PLUGIN_MANAGER_PATH '$CUSTOM_PLUGINS_DIR' set-environment -g TMUX_PLUGIN_MANAGER_PATH '$CUSTOM_PLUGINS_DIR'
set -g @plugin "tmux-plugins/tmux-example-plugin" set -g @plugin "tmux-plugins/tmux-example-plugin"
@ -189,7 +165,6 @@ test_plugin_installation_custom_dir_via_script() {
test_non_existing_plugin_installation_via_script() { test_non_existing_plugin_installation_via_script() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set -g @plugin "tmux-plugins/non-existing-plugin" set -g @plugin "tmux-plugins/non-existing-plugin"
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
HERE HERE
@ -203,7 +178,6 @@ test_non_existing_plugin_installation_via_script() {
test_multiple_plugins_installation_via_script() { test_multiple_plugins_installation_via_script() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set -g @plugin "tmux-plugins/tmux-example-plugin" set -g @plugin "tmux-plugins/tmux-example-plugin"
\ \ set -g @plugin 'tmux-plugins/tmux-copycat' \ \ set -g @plugin 'tmux-plugins/tmux-copycat'
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
@ -226,7 +200,6 @@ test_multiple_plugins_installation_via_script() {
test_plugins_installation_from_sourced_file_via_script() { test_plugins_installation_from_sourced_file_via_script() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
source '$ADDITIONAL_CONFIG_FILE_1' source '$ADDITIONAL_CONFIG_FILE_1'
set -g @plugin 'tmux-plugins/tmux-example-plugin' set -g @plugin 'tmux-plugins/tmux-example-plugin'
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
@ -252,7 +225,6 @@ test_plugins_installation_from_sourced_file_via_script() {
test_plugins_installation_from_multiple_sourced_files_via_script() { test_plugins_installation_from_multiple_sourced_files_via_script() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
\ \ source '$ADDITIONAL_CONFIG_FILE_1' \ \ source '$ADDITIONAL_CONFIG_FILE_1'
source-file '$ADDITIONAL_CONFIG_FILE_2' source-file '$ADDITIONAL_CONFIG_FILE_2'
set -g @plugin 'tmux-plugins/tmux-example-plugin' set -g @plugin 'tmux-plugins/tmux-example-plugin'

View File

@ -11,7 +11,6 @@ source "$CURRENT_DIR/helpers/tpm.sh"
test_plugin_installation_via_tmux_key_binding() { test_plugin_installation_via_tmux_key_binding() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set -g @tpm_plugins "tmux-plugins/tmux-example-plugin" set -g @tpm_plugins "tmux-plugins/tmux-example-plugin"
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
HERE HERE
@ -29,7 +28,6 @@ test_plugin_installation_via_tmux_key_binding() {
test_legacy_and_new_syntax_for_plugin_installation_work_via_tmux_key_binding() { test_legacy_and_new_syntax_for_plugin_installation_work_via_tmux_key_binding() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set -g @tpm_plugins " \ set -g @tpm_plugins " \
tmux-plugins/tmux-example-plugin \ tmux-plugins/tmux-example-plugin \
" "
@ -55,7 +53,6 @@ test_legacy_and_new_syntax_for_plugin_installation_work_via_tmux_key_binding() {
test_plugin_installation_via_script() { test_plugin_installation_via_script() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set -g @tpm_plugins "tmux-plugins/tmux-example-plugin" set -g @tpm_plugins "tmux-plugins/tmux-example-plugin"
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
HERE HERE
@ -74,7 +71,6 @@ test_plugin_installation_via_script() {
test_legacy_and_new_syntax_for_plugin_installation_work_via_script() { test_legacy_and_new_syntax_for_plugin_installation_work_via_script() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set -g @tpm_plugins " \ set -g @tpm_plugins " \
tmux-plugins/tmux-example-plugin \ tmux-plugins/tmux-example-plugin \
" "

View File

@ -33,7 +33,6 @@ check_tpm_path() {
test_plugin_sourcing() { test_plugin_sourcing() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set -g @plugin "doesnt_matter/tmux_test_plugin" set -g @plugin "doesnt_matter/tmux_test_plugin"
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
HERE HERE
@ -52,7 +51,6 @@ test_plugin_sourcing() {
test_default_tpm_path() { test_default_tpm_path() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
HERE HERE
@ -64,7 +62,6 @@ test_default_tpm_path() {
test_custom_tpm_path() { test_custom_tpm_path() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set-environment -g TMUX_PLUGIN_MANAGER_PATH '$CUSTOM_PLUGINS_DIR' set-environment -g TMUX_PLUGIN_MANAGER_PATH '$CUSTOM_PLUGINS_DIR'
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
HERE HERE

View File

@ -17,7 +17,6 @@ manually_install_the_plugin() {
test_plugin_update_via_tmux_key_binding() { test_plugin_update_via_tmux_key_binding() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set -g @plugin "tmux-plugins/tmux-example-plugin" set -g @plugin "tmux-plugins/tmux-example-plugin"
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
HERE HERE
@ -37,7 +36,6 @@ test_plugin_update_via_tmux_key_binding() {
test_plugin_update_via_script() { test_plugin_update_via_script() {
set_tmux_conf_helper <<- HERE set_tmux_conf_helper <<- HERE
set -g mode-keys vi
set -g @plugin "tmux-plugins/tmux-example-plugin" set -g @plugin "tmux-plugins/tmux-example-plugin"
run-shell "$TPM_DIR/tpm" run-shell "$TPM_DIR/tpm"
HERE HERE

11
tpm
View File

@ -21,17 +21,8 @@ tpm_path_set() {
tmux show-environment -g "$DEFAULT_TPM_ENV_VAR_NAME" >/dev/null 2>&1 tmux show-environment -g "$DEFAULT_TPM_ENV_VAR_NAME" >/dev/null 2>&1
} }
# Check if configuration file exists at an XDG-compatible location, if so use
# that directory for TMUX_PLUGIN_MANAGER_PATH. Otherwise use $DEFAULT_TPM_PATH.
set_default_tpm_path() { set_default_tpm_path() {
local xdg_tmux_path="${XDG_CONFIG_HOME:-$HOME/.config}/tmux" tmux set-environment -g "$DEFAULT_TPM_ENV_VAR_NAME" "$DEFAULT_TPM_PATH"
local tpm_path="$DEFAULT_TPM_PATH"
if [ -f "$xdg_tmux_path/tmux.conf" ]; then
tpm_path="$xdg_tmux_path/plugins/"
fi
tmux set-environment -g "$DEFAULT_TPM_ENV_VAR_NAME" "$tpm_path"
} }
# Ensures TMUX_PLUGIN_MANAGER_PATH global env variable is set. # Ensures TMUX_PLUGIN_MANAGER_PATH global env variable is set.