Sublime Text 2 is a text editor for OS X, Linux and Windows, currently in beta.
 
        
            
            
	
		
		
		
			 Ignore empty configuration files
		
		
	
              
            
            
            Ignore empty configuration files
        
    
    
    
    
    
    
    
	 
        
            
            
	
		
		
		
			 When opening a new file from the command line, sublime should focus the window that already contains it.
		
		
	
              
            
            
            When opening a new file from the command line, sublime should focus the window that already contains it.
        
    
    
    
    
    
    
    
	#!/bin/bash
for f in "$@" ; do
# If the parameter is a directory, then open it in a new sublime window
if [ -d "$f" ] ; then
sublime_text -n "$f" &
else
# Test to see if the file is already open in Sublime; if it is, then
# bring the focused window frontmost instead of opening a new one.
d=$(cd "$(dirname "$f")" 2>/dev/null && pwd | sed -e "s|^$HOME|~|")
b=$(basename -- "$f")
if [ `wmctrl -l | grep -c "$d/$b"` != 0 ] ; then
wmctrl -a "$d/$b" &
else
sublime_text -n "$f" &
fi
fi
done
 
        
            
            
	
		
		
		
			 Sublime Text 2 should be able to recognize if a opened file was renamed in finder
		
		
	
              
            
            
            Sublime Text 2 should be able to recognize if a opened file was renamed in finder
        
    
    
    
    
    
    
    
	 
        
            
            
	
		
		
		
			 project wide page crawling
		
		
	
              
            
            
            project wide page crawling
        
    
    
    
    
    
    
    
	Control/Command + r to reveal a popup that allows for this very thing (notice the @ symbol)! Even better, the search is fuzzy as well, which is particularly helpful for huge classes." to search across files.
I do this in eclipse+pydev all of the time, I can start typing the name of a function or class and it will open the file and take me directly there, it is also fuzzy and learns which items I go to the most often.
 
        
            
            
	
		
		
		
			 Add Perl Symbols to Bundle Perl Package
		
		
	
              
            
            
            Add Perl Symbols to Bundle Perl Package
        
    
    
    
    
    
    
    
	 
        
            
            
	
		
		
		
			 on_query_context not invoked for bindings "outside" of a view
		
		
	
              
            
            
            on_query_context not invoked for bindings "outside" of a view
        
    
    
    
    
    
    
    
	 
        
            
            
	
		
		
		
			 My specified tab_size gets overridden incorrectly
		
		
	
              
            
            
            My specified tab_size gets overridden incorrectly
        
    
    
    
    
    
    
    
	For example, if I have an import list wrapped onto multiple lines, with 20 spaces at the start of the next line to line up with "from module import (", it seems that Sublime Text takes this as an indication that I didn't really want 4-space indents, and it uses 8-space indents instead. Even though the rest of the file uses 4-space indents and now I can't get to half of the tab stops.
At least it doesn't use 20-space indents, but inappropriate 8-space indents are still frustrating.
 
 
        
            
            
	
		
		
		
			 Minimap headlines
		
		
	
              
            
            
            Minimap headlines
        
    
    
    
    
    
    
    
	Hey Guys,
I know you are all aout making sublime the best to work with.
I have a suggestions for your next version:
Minimap Headlines!
If I write:
or
<!--- /&/ Search Area &/& -->
and so on .. (normal comments with /&/ &/& (or something) inside them)
Result:
Browsers will read it as normal comments, Sublime will read it as comment headlines.
Meaning the 'minimap' Will be even more useful, showing overview with LARGE Headings, ease navigation and serve as a mild lock-in!
Hope you will conisder it. Feel free to mail if you have any questions, (I am in contact with your sales) and keep up the great work.
Best,
Kris
 
        
            
            
	
		
		
		
			 Please support eero.
		
		
	
              
            
            
            Please support eero.
        
    
    
    
    
    
    
    
	See http://eerolanguage.org/, eero is essentially a much better wrapper for Objective-C. It would be really nice if Sublime would support editing in it's syntax. :)
Customer support service by UserEcho
 
 
		
		
	
              
            
 
	
 
		
		
	
	