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

+6

Rendering is very slow under a remote X11 connection

Maxim Razin fa 12 anys 0

When you ssh -X to a remote machine with an installed sublime, the rendering is extremely slow.
Comparing to GVim or Eclipse, it is almost unusable even on a 1Gb LAN.

+6

Atomic file saves to ensure file integrity

jj05 fa 13 anys actualitzat fa 13 anys 1

The way sublime editor works currently, is that first truncates the file, and then writes its content.


This has various unwanted consequences:
* Files are temporarirly left in an incomplete/inconsistent state while saving, and that might have various unexpected side effects. If there is interruption while saving to the network, the file will remain corrupted until the the user restarts the editor, and the file recovery mechanism kicks in.

* It breaks most file monitoring system, such as inotify; as the notification is triggered the moment it is truncated. It makes things like Guard and LiveReload not work properly, as they update the browser when they detect a change in the file. But when they do, the filesize is 0 bytes.


Screencast on Guard and LiveReload: http://railscasts.com/episodes/264-guard

Guard: https://github.com/guard/guard

LiveReload: https://github.com/mockko/livereload

+6

setting for reindent on save or load

Pavlos Vinieratos fa 13 anys 0
should have a setting for reindenting lines on save.

the command is on edit>line>reindent, just call it on save
thanks
+6

Generate a Windows ARM build for jailbroken WinRT devices.

Everyone fa 12 anys updated by Feijoo Christophe fa 12 anys 1

Now that there is an untethered jailbreak for WinRT devices, they have become a realistic product for development. Would you consider producing a build for ARM?

+6

Custom gutter icons

tdegrunt fa 13 anys updated by Diogo Resende fa 12 anys 1
Currently the add_regions(key, [regions], scope, <icon>, <flags>) call, only allows for dot, circle, bookmark, cross. It would be very useful to allow for custom icons, or, add a few more ..

I'm trying to write a debugger for NodeJS applications and I'll try to misuse 'bookmark' and 'circle' for the purpose (breakpoint & run). But specific ones would be more useful.
+6

ASP Classic Comment Adding

Chase Hubbard fa 12 anys updated by Angel Curros Fariña fa 11 anys 1
When you go to add an ASP Classic comment, Sublime adds HTML comments (<!--comment-->) rather than the correct ASP Classic comment ('comment).
+6

German Mac: Unindent shortcut clashes with Layout Grid 4

Leo Koppelkamm fa 13 anys updated by Felix fa 12 anys 2
The shortcuts are the same: Apple+[ === Apple + Alt + 5 on some european keyboards.

Please add something if [ == Alt + 5, then reassign the Layout shortcut to maybe Apple + Shift + Alt + 5
+6

When dragging the last tab from one instance to another, don't leave remaining instance

Scott Bowers fa 12 anys 0
Sublime lets you drag tabs around and snap them out of an instance and into a new instance.  When you drag a tab from one instance to another, sublime will leave the separate instance open when there are no other tabs in it.

Suggestion: when moving tabs from one instance to another, destroy the empty  instance so I don't have to.




+6

Leading and Kerning settings

Gaius Centus Novus fa 12 anys 0

Some monospace fonts are a little "fuller" than others, taking up the full line height or the full box width. It would be nice to be able to adjust the leading and kerning for these fonts.

+6

Easily run Rspec tests

Patrick Turley fa 14 anys updated by Tom Brooke fa 13 anys 2
Many ROR developers rely heavily on tools like TextMate's ability to easily run Rspec tests. It would great if there were a built-in way to do this.