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

+4

display ALL hidden characters

Mario Huluvu il y a 11 ans 0

it is currently impossible to display some hidden characters (e.g. non joiner chars and new lines). it would be great to at least show some placeholder for unknown characters.

+4

Is it possible to execute a command instead of inserting content for snippets?

Oktay Acikalin il y a 14 ans mis à jour par Rodrigo Flores il y a 12 ans 3
Say I have text like YYYY-MM-DD and want to replace it with the value 2011-03-22. I don't want to do this via a key binding but rather via a tab trigger. The trigger would be YYYY-MM-DD and a TextCommand could return the proper content.
Is that possible?
+4

Bracket indicator mixes comments and actual code

Jeff Yeo il y a 14 ans mis à jour par Asher Max Schweigart il y a 13 ans 2
For example
1 - If(blah blah){
2 - //If(blah){ <-- commented out
3 - Code code
4 - }

The bracket indicator would pair line 2 and 4.
This happened to me in C++. I don't know how it's doing in other languages.
It would be awesome if this can be fixed.
+4

Folders in a project don't always update

Seb Maynard il y a 13 ans mis à jour par Andy Jarrell il y a 12 ans 1
I have a layout similar to:

  • prototypes
    • mm01
      • ebin
      • src
        • somefile.erl
    • mm02
      • ebin
      • src
        • somefile.erl
        • someotherfile.erl
However, sometimes it just shows the mm02 or mm02/src folder as empty - it usually seems to be only on the second or third folders (mm01 usually is correct); if I click Project->refresh folders, it updates and continues working properly. If I close SublimeText and open it again, the same seems to happen.
+4

Having syntax highlighting for awk would be great!

Vladimir Lebedev il y a 13 ans mis à jour par Tyler Jensen il y a 12 ans 1
Hi,

I'm paid user of Sublime Text 2 beta. Using it for writing in Erlang and (g)AWK. It is quite sad, that sublime is not supporting awk syntax highlighting. Would pay another $59 for having it.

Best regards,
Vladimir
+4

Create and edit a new temporary file

David Peixotto il y a 13 ans 0
It would be nice to be able to create a new temporary file from within the editor. Many times I just want to stash some data in a file and edit it without having to give it a proper name. 

The temporary file should be deleted when the buffer is closed.
+4
Corrigé

Precedence given to filenames in Goto File matches

Ryan Park il y a 14 ans mis à jour par Jon Skinner il y a 13 ans 5
When I type FooBar.txt I usually mean:
com/example/util/FooBar.txt

not:
com/example/model/foo/Bar.txt

in an extremely large project I'm getting far too many irrelevant matches.
Solution
Jon Skinner il y a 13 ans
This is fixed in 2126
+4

Side bar file name search

webArtisan il y a 11 ans mis à jour par Sourabh Verma il y a 11 ans 3

It would be helpful to have a text zone at the top of the sidebar so we can show only the files and folders that we need by typing the name.

+4

Uppercase regex not matching

ab30 il y a 11 ans 0

[\l] or [[:l:]] or [[:lower:]] matches same characters as [\u] or [[:u:]] or [[:upper:]] in the regex find bar.


ST3 3047

+4

Filter to show only matching lines

cmulcahy il y a 13 ans mis à jour par Yatharth Gupta il y a 12 ans 2

This is probably a request for a plugin.


I'd like to be able to run a filter that provides only matching lines a la grep. I'd like it to filter out of the view any lines that do not match a provided regex. 

Thanks!