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

+9

line number scroll lock

Sandor vor 13 Jahren aktualisiert von Modulo m vor 11 Jahren 2
I love Sublime Text 2 mostly because I can set the layout to see more than one files side by side at the same time. This is very useful when comparing configuration files or translating texts. However it would be very nice to have a kind of "line number scroll lock" or "line comparison mode" between the open files function for these tasks. This means that if I scroll in one pane the others would follow, showing the same scroll or line position in all the panes.
+9

Please add API to Goto Anything engine

Greg Williams vor 13 Jahren aktualisiert vor 13 Jahren 0
+9

Option to not wait when receiving input from stdin

Asger Drewsen vor 12 Jahren aktualisiert von Bill vor 9 Jahren 4
From doing `subl --help` you can read that "--wait is implied if reading from stdin."

However I would like to pass text to Sublime Text via a pipe, without it having to wait.
There is currently no option to do so.
+9

Indent html lines automatically when you press enter

Eugene Pimenov vor 13 Jahren 0
When you have the following structure:
<p>|</p>
where | is the cursor positon, and you press enter you get:

<p>

|</p>
(ignore the newline, your issue tracker is weird).

E.g. if you do that in ruby (or C++):
hello {|}
and press enter you get the following structure:
hello {

  |
}
(ignore the newline here as well)
Which is the correct one. If you do the same to HTML in the TextMate you'll get the correct behavior.
+9

better file management

Domi Barton vor 13 Jahren aktualisiert von Mike Bartlett vor 12 Jahren 2

I would appreciate the following two functions in the project sidebar:

new file

- create new file from context menu
- instead of opening a new "untitled" file, create a new empty file and focus the filename field to (re)name the file directly after creation

duplicate file

- right click on an existing file
- select duplicate file
- copy the existing file and set the focus on the filename field to rename the duplicated file (w/o selecting suffix)

The suffix thing can be tricky, because there can be multiple suffixes (e.g. .php / .inc.php).

+9

Better Syntax Highlighting

Rob Graham vor 13 Jahren aktualisiert vor 13 Jahren 6
I'd really like to see better syntax highlighting in the next version of Sublime Text 2. While we have highlighting, it's incredibly difficult to see where the relationships are. A single bracket for example { is already white. When highlighted it has a few white dots under it that are easily missed. Same goes for tags. Like Notepad ++ or Coda, PLEASE give us the options of changing colors and highlighting the whole tag/bracket. This is the biggest peeve I've ever had with your software and it's such a good program. This would complete me!!!!

Keep up the good work
+9

Add folders and files icons to the project navigation.

Fabrice Delaneau vor 13 Jahren aktualisiert vor 13 Jahren 0
Adding some icons would help parsing the project more easily.
Textmate Coda or Espresso feature icons in their navigation. Textmate 2 push it further by using rather different colors for the different file type making this even easier to spot the file you search (could be specially helpful for the "Open file" part).
+9

embedded Command Line Interpreter

sepisoad vor 14 Jahren aktualisiert von Will Bond vor 13 Jahren 3
I think i would be cool if you embed and command line interpreter, so we can control our project easier, for example after I changed my source code I want to commit the changes, if there was and command line interpreter I could do it without leaving SublimeText.
In general adding such functionality makes the app more independent from other apps.
+9

Edit All Occurrences of String in Scope

Itai Ferber vor 12 Jahren aktualisiert vor 12 Jahren 2
Xcode (the Objective-C IDE) has a great feature where you can simultaneously edit all occurrences of a string at once within a given scope. This is really handy when renaming method parameters or variable names — it saves a lot of time, and prevents any of the mishaps that Find and Replace and introduce. This would be a great addition to Sublime Text 2...
+9

Simple localization

Ivan Smirnov vor 12 Jahren 0
Please add identifiers for each menu item. This allows to translate an application without change some system files by using a simple plug-in with 'Main.sublime-menu' file. For example:

[

  { 

    "id": "file", 
     "caption": "Файл" // for Russian 

  }

]

or 

[

  { 

    "id": "file", 
    "caption": "Fichier" // for French 

  }

]