+4

Improper indentation breaks code folding

whee vor 13 Jahren aktualisiert von adzenith vor 13 Jahren 1
int foo(void) {

int quux = 2;
// comment, indented one space less than it should be
return quux;
}

will fold to

int foo(void) { [...]

// comment, indented one space less than it should be
return quux;
}
+4

Quick new file

Harrison Beachey vor 13 Jahren aktualisiert vor 13 Jahren 0
A nice feature that I've gotten used to in another editor is the ability to double-click on the tab bar to create a new file.  This would be a fantastic addition to sublime. 
+4

Syntax hightlighting breaks in wrong places when text contains non-ascii characters

Mogens Heller Grabe vor 13 Jahren aktualisiert vor 13 Jahren 0
When text contains non-ASCII characters, like e.g. Danish æ, ø, and å, syntax highlighting seems to wrongfully consider these as ending the current token - example:  Image 88 (haven't checked to see if this is just a problem with XML hightligting though)
+4

Regression in 2181 breaks opening UNC paths

jaraco vor 13 Jahren aktualisiert vor 13 Jahren 0
Originally reported in this thread:

http://www.sublimetext.com/forum/viewtopic.php?f=3&t=5515#p25109

When invoking SublimeText 2 on a UNC path, it fails to interpret the path correctly. This is a regression in 2181.
+4

Column mode for tab separated data

Sergey Kovalev vor 12 Jahren 0

Column mode for tab separated data. 


Example:

1 0.124140.2241 this is text data

2 0 0.12345678912e-002 text

3 1 2.323324-1.32e+2 data


For editing data tables with various record length. I have to set huge tab size. 

It would be very good align text in a staight columns for such files. 

And turn off TAB autocomple. It painfull for digits.

+4

save_on_focus sets off the warning

Vadim Peretokin vor 13 Jahren in Plugin announcements aktualisiert vor 13 Jahren 0
I occasionally get the 'A plugin (save_on_focus_lost) may be making Sublime Text unresponsive by taking too long (0.247615s) in its on_deactivated callback.' line.

While I understand this is normal and nothing to worry about, perhaps save_on_focus_lost could be given more leniency on larger files that it saves, so it doesn't trip the warning (or even better, improved to be faster!)
+4

Can't type german umlauts with Alt+u and then u for ü

Robert Bohne vor 14 Jahren aktualisiert von Roel De Coninck vor 9 Jahren 4
Unfortunately I can not enter German umlauts with the Alt + u and then u for ü on MacOSX.
(Use a US-Laytout keyboard with US-Layout OSX Settings)
+4

Title says "uregistered" instead of unregistered.

Shannen Saez vor 12 Jahren aktualisiert von Larz Conwell vor 12 Jahren 1
When using an unregistered Sublime Text Dev build, the title says UREGISTERED instead of UNREGISTERED
+4

quick file/folder searching on the folder tree panel

Duy Nguyen vor 12 Jahren 0
It would be nice to have a feature (like Netbeans does) for searching file/folder by name on the folder tree. The feature could be triggered by clicking on the tree panel and start typing. The tree will then move to one of the matching files/folders.
+4

Column selection should skip wrapped lines

Martin H vor 12 Jahren 0

If a line wraps, when doing Add Next Line, it should not add a cursor into the wrapped "virtual" line.

+4

Cannot accept drag'n'dropped files from sftp (Dolphin, KDE4, Linux)

Da Scritch vor 14 Jahren 0
I usually use KDE env for working, with kate as usual editor.
I'm browsing distant servers with Dolphin, the new and default file manager from KDE4, via sftp
+4

SystemC

Pieter-Jan Van de Maele vor 12 Jahren 0

I would love support for SystemC in sublime as I'm an embedded system designer and would like to use one editor for everything.

+4
Fertiggestellt

Recursive find in files

joey vor 14 Jahren aktualisiert von Jon Skinner vor 14 Jahren 6
There should be an option for 'Find in files' to allow searching subdirectories.
Antwort
Jon Skinner vor 14 Jahren
Fixed in build 2027
+4

Syntax Highlighting for AWK/GAWK

Bruce Pieterse vor 13 Jahren aktualisiert von Tyler Jensen vor 12 Jahren 1
Hi,

Would it be possible to implement syntax highlighting for AWK/GAWK source files?

Thanks
+4

In-place operations for sidebar items

Donato Rotunno vor 13 Jahren aktualisiert von chaiguy vor 13 Jahren 1
It should be possible to run inline actions on the sidebar items.
The current implementation is counter-intuitive and not usable since it forces the user to switch context (and focus).
When renaming, the user has to realize that a new bar has appeared at the bottom of the interface.
When adding a new file/folder the behaviour is even worse since it opens a new file and the focus is moved there so the user doesn't know where the new item belongs to.
For a proper implementation please see Gedit's File Browser Pane.
+4

Ctrl+Tab functionality

Stuart Johnston vor 13 Jahren aktualisiert vor 13 Jahren 1
Right now, ctrl+tab follows no apparent ordering scheme. I assume (and have read somewhere) that it follows the order of the stack of most recently used tabs, but this seems counter-intuitive given every other tabbed program progresses through them linearly as listed.

Please add an option to allow ctrl+tab and ctrl+shift+tab to scroll forward\backward through the list of opened tabs as they appear in the tab bar.
+4

Projects should open in new windows

Markus Peter vor 13 Jahren 0
Projects should open in new windows, instead of replacing the current window.

Files outside the current project should not open in the current project when a file is opened using the "subl" command.

+4

Code in shippets

macourteau vor 12 Jahren aktualisiert von FichteFoll vor 12 Jahren 2
A feature I love in TextMate and that I really miss in Sublime Text is the ability to run code inside snippets. TextMate implements that with backticks, and anything between backticks is executed as shell code, and the output gets inserted at that point in the snippet.

I would really love to be able to do something similar (doesn't have to be shell code, could be e.g. Python), and use the output inside snippets.
+4

Include file check for function/variable names + user struct/class highlighting

Marian Frische vor 13 Jahren aktualisiert von Ivan Dokov vor 11 Jahren 5
It would be great if include files could be checked and variables and function names could be used in the autocompletion. Furthermore it would be great when only class members would be shown when writing:
someclass->
So that it then shows all class members [like in visual studio]

Problably you could also add highlighting to user created structs and classes, so that the following class name gets highlighted:
class someclass { ... };

someclass *class = new someclass; //the "someclass" should be highlighted
+4

Line wrapping bug: superfluous leading space

Idan Gazit vor 13 Jahren aktualisiert von A Pérez Carballo vor 12 Jahren 3
A bit of a strange behavior I've come across: soft-wrapped lines which end in an HTML tag will render the space after the tag at the beginning of the following line.

Screenshot example:

Image 30