Sublime Text 2 is a text editor for OS X, Linux and Windows, currently in beta.

Fuzzy search snippet tab triggers
Example: Let's say I have a snippet with a tab trigger named this:
left triangle black
This snippet creates a Left-facing, Black Triangle HTML entity for me. The problem with snippet tab triggers is that the user has to type in the name EXACTLY as the tab trigger defines it. For the above example, the user has to type exactly the letters:
l e f t <space> t r i..... etc
It would be nice if ST supported fuzzy searches of tab triggers, so for the above example, the user could simply type 'triangle', and it would show the above snippet along with all other snippets with the word triangle in it. Or maybe they type "black" to see all snippets with the word "black" in it.
Catch my drift? Would this be helpful to anyone else?

Ignore empty configuration files

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

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

on_query_context not invoked for bindings "outside" of a view

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
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
Customer support service by UserEcho