mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2024-05-11 05:55:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			635 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			635 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
# Sublime Text 2 Aliases
 | 
						|
#unamestr = 'uname'
 | 
						|
 | 
						|
local _sublime_darwin_subl=/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl
 | 
						|
 | 
						|
if [[ $('uname') == 'Linux' ]]; then
 | 
						|
	if [ -f '/usr/bin/sublime_text' ]; then
 | 
						|
		st_run() { nohup /usr/bin/sublime_text $@ > /dev/null & }
 | 
						|
	else
 | 
						|
		st_run() { nohup /usr/bin/sublime-text $@ > /dev/null & }
 | 
						|
	fi
 | 
						|
alias st=st_run
 | 
						|
elif  [[ $('uname') == 'Darwin' ]]; then
 | 
						|
	# Check if Sublime is installed in user's home application directory
 | 
						|
	if [[ -a $HOME/${_sublime_darwin_subl} ]]; then
 | 
						|
		alias st='$HOME/${_sublime_darwin_subl}'
 | 
						|
	else
 | 
						|
		alias st='${_sublime_darwin_subl}'
 | 
						|
	fi
 | 
						|
fi
 | 
						|
alias stt='st .'
 |