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

+2

autocomplete symbols order

Andrea Interguglielmi il y a 13 ans mis à jour il y a 13 ans 3
I think it'd feel more natural if autocomplete would sort the list of symbols based on the current position in the buffer, listing first those occurrences that are closer to the current position.
A good example of such feature is seen in Textmate's autocomplete.
+2

Haskell syntax highlighting: Improper class declaration highlighting

Vincent Ambo il y a 12 ans 0

Currently, Sublime Text expects any Haskell class declaration to include a "where" statement for associated functions. This is not always the case, i.e. a class declaration


class Foo a


is completely valid. The syntax highlighting breaks on the missing where statement.

+2

Add "Mark All" to Find panel - add bookmarks to all search result lines

robertcollier4 il y a 12 ans 0

In the Find Panel - there should be a button labeled "Mark All" to add a bookmark to all lines containing the search term. This is a very useful functionality which is shown below from Textpad - so that you can do a search, and then process and edit each of your search results one by one.


Image 219





+2

Read and create .swp files like Vi

Nacho Garcia il y a 13 ans mis à jour il y a 13 ans 0
Read .swp Vi files, so when someone else is working on that file you get informed. Also, create a .swp file every time you open a file. Just like Vi does.
+2
Corrigé

Pressing ctrl+tab with no tabs open right after startup crashes the editor

dragoon il y a 14 ans mis à jour par Jon Skinner il y a 14 ans 3
Atleast on Windows 7 64bit.

If you open tabs and then close all of them, ctrl+tab doesn't crash the application anymore.
Solution
Jon Skinner il y a 14 ans
Fixed in build 2020
+2

hello I would like sublime supporting lilypond -> http://www.lilypond.org/ maybe it does and I don't know how.

Henrik Pantle il y a 12 ans mis à jour par Henrik Pantle il y a 11 ans 3

hello I would like sublime supporting lilypond  -> http://www.lilypond.org/  maybe it does and I don't know how.

+2
Écarté

Wrap each line of selection in tag

H C il y a 13 ans mis à jour par Jon Skinner il y a 11 ans 4
Love the new "key binding to wrap the selection in a tag" feature. Please add the ability to select multiple lines and have each line wrapped in a tag. TextMate does this beautifully. I think TM's key binding for this is command+cntrl+shift+w
Solution
Jon Skinner il y a 13 ans
This can be done by first splitting the selection into lines (command+shift+l on osx), and then using the regular wrap selection in tag binding - I don't think a separate binding is desirable in this case.
+2

OS X: Font rendering/anti alias of search bar messed up in fullscreen

Frederic Hemberger il y a 12 ans mis à jour il y a 12 ans 1

Today I noticed something strange. After switching to fullscreen mode, the font rendering/anti alias of the search bar breaks.


Image 192


Image 193


Switching back to windowed mode and everything works fine again. I don't have any font_options set im my config.


OS X 10.6.8

Sublime Text build 2220

+2

Package ratings

Chris Eigner il y a 11 ans 0
I'd love to see github fork/star counts next to packages in the package explorer. This would give some indication which packages to use when there are many dups.
+2

Copy file name and/or file location from its tab's context menu

R K il y a 12 ans 0

 In a collaborative environment, I often have to quickly send someone the name and/or location of the file I'm currently working on. My previously used editor had an option to copy that info from the context menu of the file's/buffer's tab directly to the clipboard, which is really handy, especially if the paths are really long and nested deeply.


The options in my previous editor were like this (example path and file: /very/long/path/to/my/working/directory/file.pm):

- 'Copy full path' -> /very/long/path/to/my/working/directory/file.pm

- 'Copy file name' -> file.pm

- 'Copy directory name' -> /very/long/path/to/my/working/directory/


This would be so perfect. :)