From e529dc221c55cad929cfcff02442660b24fca460 Mon Sep 17 00:00:00 2001 From: yasudanaoya <43776161+yasudanaoya@users.noreply.github.com> Date: Thu, 30 Dec 2021 22:07:10 +0900 Subject: [PATCH 1/2] fix: typo --- docs/how_to_create_plugin.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/how_to_create_plugin.md b/docs/how_to_create_plugin.md index b1a68f9..f7d9c13 100644 --- a/docs/how_to_create_plugin.md +++ b/docs/how_to_create_plugin.md @@ -92,12 +92,12 @@ That should set up the key binding. Now hit `prefix + T` and see if it works. ### 6. publish the plugin 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 `@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`. ### Conclusion From 49c51f3774e655e90564be8db61aae32dec2a553 Mon Sep 17 00:00:00 2001 From: yasudanaoya <43776161+yasudanaoya@users.noreply.github.com> Date: Sat, 1 Jan 2022 17:49:21 +0900 Subject: [PATCH 2/2] fix: github to GitHub --- scripts/install_plugins.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_plugins.sh b/scripts/install_plugins.sh index 81e6836..e2450ac 100755 --- a/scripts/install_plugins.sh +++ b/scripts/install_plugins.sh @@ -26,7 +26,7 @@ clone() { # tries cloning: # 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() { local plugin="$1" local branch="$2"