Commit 677acc3a authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #3486 from ckesc/master

Sublime Text plugin: sst alias for sudo run sublime
parents bd792f09 5b900925
......@@ -12,6 +12,8 @@ if [[ $('uname') == 'Linux' ]]; then
for _sublime_path in $_sublime_linux_paths; do
if [[ -a $_sublime_path ]]; then
st_run() { $_sublime_path $@ >/dev/null 2>&1 &| }
st_run_sudo() {sudo $_sublime_path $@ >/dev/null 2>&1}
alias sst=st_run_sudo
alias st=st_run
break
fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment