diff --git a/assets/default/bin/ghp b/assets/default/bin/ghp index e31b07f..980ec21 100755 --- a/assets/default/bin/ghp +++ b/assets/default/bin/ghp @@ -1,3 +1,6 @@ +#! /bin/bash + +# Created by ViViDboarder. Please share with attribution # Function used to take a github http pull URL and automatically convert it to an ssh url if [[ "$1" == "" ]]; then diff --git a/assets/default/bin/ghpr b/assets/default/bin/ghpr index e651e53..ca89ace 100755 --- a/assets/default/bin/ghpr +++ b/assets/default/bin/ghpr @@ -1,3 +1,6 @@ +#! /bin/bash + +# Created by ViViDboarder. Please share with attribution # Function used to checkout a pull request into it's own branch REMOTE="" diff --git a/assets/default/bin/pbcopy-remote b/assets/default/bin/pbcopy-remote index 0d45a6d..cbc4050 100755 --- a/assets/default/bin/pbcopy-remote +++ b/assets/default/bin/pbcopy-remote @@ -1,5 +1,6 @@ #! /bin/bash +# Created by ViViDboarder. Please share with attribution # Reads hostname from arg1 and gets echos the tmux buffer over to to pbcopy ssh $1 'tmux show-buffer' | pbcopy diff --git a/assets/default/bin/pbcopy-tmux b/assets/default/bin/pbcopy-tmux index 72c2cbc..b9a5d61 100755 --- a/assets/default/bin/pbcopy-tmux +++ b/assets/default/bin/pbcopy-tmux @@ -1,5 +1,6 @@ #! /bin/bash +# Created by ViViDboarder. Please share with attribution # Mimics pbcopy using the tmux buffer instead. To use, put this in your path as pbcopy # This is useful for yanking to the cliboard buffer in Vim on a remote box diff --git a/assets/default/bin/pbpaste-tmux b/assets/default/bin/pbpaste-tmux index ca8a835..c7c7143 100755 --- a/assets/default/bin/pbpaste-tmux +++ b/assets/default/bin/pbpaste-tmux @@ -1,5 +1,6 @@ #! /bin/bash +# Created by ViViDboarder. Please share with attribution # Mimics pbpaste using the tmux buffer instead. To use, put this in your path as pbpaste # This is useful for putting from cliboard buffer in Vim on a remote box diff --git a/assets/default/bin/tmux-link-window b/assets/default/bin/tmux-link-window index 9d65874..17588c5 100755 --- a/assets/default/bin/tmux-link-window +++ b/assets/default/bin/tmux-link-window @@ -1,3 +1,5 @@ #! /bin/bash +# Created by ViViDboarder. Please share with attribution + tmux new-session "tmux link-window -s $*"