| 
									
										
										
										
											2012-04-19 00:14:55 -07:00
										 |  |  | # Sublime Text 2 Aliases | 
					
						
							| 
									
										
										
										
											2012-05-24 11:33:19 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | if [[ $('uname') == 'Linux' ]]; then | 
					
						
							| 
									
										
										
										
											2014-03-02 14:13:55 -05:00
										 |  |  |     local _sublime_linux_paths > /dev/null 2>&1 | 
					
						
							|  |  |  |     _sublime_linux_paths=( | 
					
						
							|  |  |  |         "$HOME/bin/sublime_text" | 
					
						
							|  |  |  |         "/opt/sublime_text/sublime_text" | 
					
						
							|  |  |  |         "/usr/bin/sublime_text" | 
					
						
							|  |  |  |         "/usr/local/bin/sublime_text" | 
					
						
							| 
									
										
										
										
											2014-06-21 20:29:05 -05:00
										 |  |  |         "/usr/bin/subl" | 
					
						
							| 
									
										
										
										
											2014-03-02 14:13:55 -05:00
										 |  |  |     ) | 
					
						
							|  |  |  |     for _sublime_path in $_sublime_linux_paths; do | 
					
						
							|  |  |  |         if [[ -a $_sublime_path ]]; then | 
					
						
							|  |  |  |             st_run() { $_sublime_path $@ >/dev/null 2>&1 &| } | 
					
						
							|  |  |  |             alias st=st_run | 
					
						
							|  |  |  |             break | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |     done | 
					
						
							| 
									
										
										
										
											2013-02-08 23:00:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-24 11:33:19 -04:00
										 |  |  | elif  [[ $('uname') == 'Darwin' ]]; then | 
					
						
							| 
									
										
										
										
											2014-03-02 14:13:55 -05:00
										 |  |  |     local _sublime_darwin_paths > /dev/null 2>&1 | 
					
						
							|  |  |  |     _sublime_darwin_paths=( | 
					
						
							|  |  |  |         "/usr/local/bin/subl" | 
					
						
							|  |  |  |         "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" | 
					
						
							|  |  |  |         "/Applications/Sublime Text 3.app/Contents/SharedSupport/bin/subl" | 
					
						
							|  |  |  |         "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" | 
					
						
							|  |  |  |         "$HOME/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" | 
					
						
							|  |  |  |         "$HOME/Applications/Sublime Text 3.app/Contents/SharedSupport/bin/subl" | 
					
						
							|  |  |  |         "$HOME/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2013-02-08 23:00:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-17 00:03:16 +01:00
										 |  |  |     for _sublime_path in $_sublime_darwin_paths; do | 
					
						
							|  |  |  |         if [[ -a $_sublime_path ]]; then | 
					
						
							|  |  |  |             alias subl="'$_sublime_path'" | 
					
						
							|  |  |  |             alias st=subl | 
					
						
							|  |  |  |             break | 
					
						
							|  |  |  |         fi | 
					
						
							|  |  |  |     done | 
					
						
							| 
									
										
										
										
											2012-05-21 10:42:12 -04:00
										 |  |  | fi | 
					
						
							| 
									
										
										
										
											2013-02-08 23:00:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-19 00:14:55 -07:00
										 |  |  | alias stt='st .' |