Change github organization for this and other plugins

This commit is contained in:
Bruno Sutic 2014-07-28 16:03:13 +02:00
parent e428b0f7f9
commit c37ed1be2c
6 changed files with 18 additions and 16 deletions

View File

@ -1,6 +1,8 @@
# Changelog
### master
- update readme because of github organization change to
[tmux-plugins](https://github.com/tmux-plugins)
### v0.0.2, 2014-07-17
- run all *.tmux plugin files as executables

View File

@ -89,7 +89,7 @@ To try if this works, execute the plugin run file:
That should set up the key binding. Now hit `prefix + T` and see if it works.
If you get stuck you can download and check this tutorial
[plugin here](https://github.com/bruno-/tmux_example_plugin).
[plugin here](https://github.com/tmux-plugins/tmux-example-plugin).
### 6. publish the plugin

View File

@ -3,11 +3,11 @@
If you create a plugin, feel free to create a pull request that adds it to the
list.
- [pain control](https://github.com/bruno-/tmux_pain_control) - standard
- [pain control](https://github.com/tmux-plugins/tmux-pain-control) - standard
bindings for controlling panes.
- [goto session](https://github.com/bruno-/tmux_goto_session) - faster session
- [goto session](https://github.com/tmux-plugins/tmux-goto-session) - faster session
switching.
- [battery osx](https://github.com/bruno-/tmux_battery_osx) - battery status
- [battery osx](https://github.com/tmux-plugins/tmux-battery-osx) - battery status
for OSX in tmux `status-right`
- [logging](https://github.com/bruno-/tmux_logging) - easy logging and
- [logging](https://github.com/tmux-plugins/tmux-logging) - easy logging and
screen capturing.

View File

@ -8,7 +8,7 @@ Requirements: `tmux` version 1.9 (or higher), `git`
Clone TPM:
$ git clone https://github.com/bruno-/tpm ~/.tmux/plugins/tpm
$ git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
Put this at the bottom of your `.tmux.conf` (backslashes at the end of the lines
are required):
@ -16,8 +16,8 @@ are required):
# List of plugins
# Supports `github_username/repo` or full git URLs
set -g @tpm_plugins " \
bruno-/tpm \
bruno-/tmux_pain_control \
tmux-plugins/tpm \
tmux-plugins/tmux-pain-control \
"
# Other examples:
# github_username/plugin_name \
@ -53,15 +53,15 @@ After you press `prefix + I`, everything should be up to date.
### List of plugins
- [pain control](https://github.com/bruno-/tmux_pain_control) - useful standard
- [pain control](https://github.com/tmux-plugins/tmux-pain-control) - useful standard
bindings for controlling panes
- [goto session](https://github.com/bruno-/tmux_goto_session) - faster session
- [goto session](https://github.com/tmux-plugins/tmux-goto-session) - faster session
switching
- [battery osx](https://github.com/bruno-/tmux_battery_osx) - battery status
- [battery osx](https://github.com/tmux-plugins/tmux-battery-osx) - battery status
for OSX in Tmux `status-right`
- [logging](https://github.com/bruno-/tmux_logging) - easy logging and
- [logging](https://github.com/tmux-plugins/tmux-logging) - easy logging and
screen capturing
- [online status](https://github.com/bruno-/tmux_online_status) - online status
- [online status](https://github.com/tmux-plugins/tmux-online-status) - online status
indicator in Tmux `status-right`. Useful when on flaky connection to see if
you're online.

View File

@ -16,10 +16,10 @@ send "I"
set timeout 15
expect {
"Downloading bruno-/tmux_example_plugin" {
"Downloading tmux-plugins/tmux-example-plugin" {
expect {
"bruno-/tmux_example_plugin download success" {
"tmux-plugins/tmux-example-plugin download success" {
expect { "Done, press ENTER to continue" { exit } }

View File

@ -6,7 +6,7 @@ source $CURRENT_DIR/helpers.sh
test_plugin_installation() {
set_tmux_conf_helper <<- HERE
set -g @tpm_plugins "bruno-/tmux_example_plugin"
set -g @tpm_plugins "tmux-plugins/tmux-example-plugin"
run-shell "~/tpm/tpm"
HERE