diff options
author | Chris Smith <csmith@bloomhealthco.com> | 2014-08-26 08:34:17 -0500 |
---|---|---|
committer | Chris Smith <csmith@bloomhealthco.com> | 2014-08-26 08:34:17 -0500 |
commit | e20ce81c6663e354f9ef29618e7149800b9a3b26 (patch) | |
tree | 1c928952183abec1adbce916a9060b4987f6ca0a | |
parent | 1b7a3ea99a8b566510ab7881063148c43be6b98d (diff) | |
download | zsh-e20ce81c6663e354f9ef29618e7149800b9a3b26.tar.gz zsh-e20ce81c6663e354f9ef29618e7149800b9a3b26.tar.bz2 zsh-e20ce81c6663e354f9ef29618e7149800b9a3b26.zip |
Adding BBEdit plugin
-rw-r--r-- | plugins/bbedit/bbedit.plugin.zsh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/plugins/bbedit/bbedit.plugin.zsh b/plugins/bbedit/bbedit.plugin.zsh new file mode 100644 index 000000000..6eec10f21 --- /dev/null +++ b/plugins/bbedit/bbedit.plugin.zsh @@ -0,0 +1,21 @@ +alias bbpb='pbpaste | bbedit --clean --view-top' + +alias bbd=bbdiff + +# +# If the bb command is called without an argument, launch BBEdit +# If bb is passed a directory, cd to it and open it in BBEdit +# If bb is passed a file, open it in BBEdit +# +function bb() { + if [[ -z $1 ]] + then + bbedit --launch + else + bbedit $1 + if [[ -d $1 ]] + then + cd $1 + fi + fi +} |