0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-12 04:01:14 +02:00

Add sublime-merge plugin (#7228)

This commit is contained in:
Amir Masoud Abdol 2020-10-03 11:47:18 +02:00 committed by GitHub
parent 1617f4ffaf
commit d5dc9f7153
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 72 additions and 0 deletions

View file

@ -0,0 +1,17 @@
## sublime-merge
Plugin for Sublime Merge, a cross platform text and code editor, available for Linux, Mac OS X, and Windows.
### Requirements
* [Sublime Merge](https://www.sublimemerge.com)
### Usage
* If `sm` command is called without an argument, launch Sublime Merge
* If `sm` is passed a directory, `cd` to it and open the existing git repository in Sublime Merge
* If `smt` command is called, it is equivalent to `sm .`, opening the existing git repository in the current folder in Sublime Merge
* If `ssm` command is called, it is like `sudo sm`, opening the git repository in Sublime Merge. Useful for editing system protected repositories.

View file

@ -0,0 +1,55 @@
# Sublime Merge Aliases
() {
if [[ "$OSTYPE" == linux* ]]; then
local _sublime_linux_paths
_sublime_linux_paths=(
"$HOME/bin/sublime_merge"
"/opt/sublime_merge/sublime_merge"
"/usr/bin/sublime_merge"
"/usr/local/bin/sublime_merge"
"/usr/bin/sublime_merge"
"/usr/local/bin/smerge"
"/usr/bin/smerge"
)
for _sublime_merge_path in $_sublime_linux_paths; do
if [[ -a $_sublime_merge_path ]]; then
sm_run() { $_sublime_merge_path "$@" >/dev/null 2>&1 &| }
ssm_run_sudo() {sudo $_sublime_merge_path "$@" >/dev/null 2>&1}
alias ssm=ssm_run_sudo
alias sm=sm_run
break
fi
done
elif [[ "$OSTYPE" = darwin* ]]; then
local _sublime_darwin_paths
_sublime_darwin_paths=(
"/usr/local/bin/smerge"
"/Applications/Sublime Merge.app/Contents/SharedSupport/bin/smerge"
"$HOME/Applications/Sublime Merge.app/Contents/SharedSupport/bin/smerge"
)
for _sublime_merge_path in $_sublime_darwin_paths; do
if [[ -a $_sublime_merge_path ]]; then
subm () { "$_sublime_merge_path" "$@" }
alias sm=subm
break
fi
done
elif [[ "$OSTYPE" = 'cygwin' ]]; then
local sublime_merge_cygwin_paths
sublime_merge_cygwin_paths=(
"$(cygpath $ProgramW6432/Sublime\ Merge)/sublime_merge.exe"
)
for _sublime_merge_path in $_sublime_merge_cygwin_paths; do
if [[ -a $_sublime_merge_path ]]; then
subm () { "$_sublime_merge_path" "$@" }
alias sm=subm
break
fi
done
fi
}
alias smt='sm .'