Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
d5dc9f71
Unverified
Commit
d5dc9f71
authored
Oct 03, 2020
by
Amir Masoud Abdol
Committed by
GitHub
Oct 03, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add sublime-merge plugin (#7228)
parent
1617f4ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
72 additions
and
0 deletions
+72
-0
README.md
plugins/sublime-merge/README.md
+17
-0
sublime-merge.plugin.zsh
plugins/sublime-merge/sublime-merge.plugin.zsh
+55
-0
No files found.
plugins/sublime-merge/README.md
0 → 100644
View file @
d5dc9f71
## 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.
\ No newline at end of file
plugins/sublime-merge/sublime-merge.plugin.zsh
0 → 100644
View file @
d5dc9f71
# 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 .'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment