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

+3

build 2181 crash: open sublime, right-click-close first tab > crash

Tihomir Saulic hace 12 años actualizado hace 12 años 1
Basically what I wrote in the title is what's happening. I had it crash in a couple of a little different situations, too, and those defects have probably been addressed as well.

This happens on my iMac, my co-worker's iMacs and my personal MacBook Air.

Here's the crash output
http://pastebin.com/BPqC2WQd
+3

UI lock on file save

Leonardo Almiñana hace 12 años 0

Hi, there is one issue when saving files, it seems like the UI is locked while the files are being written, that causes an unnoticeable delay when writing local files but i use Sublime with ExpanDrive (i map SFTP directories with it) and it turns those delays into noticeable delays. It'd be awesome if you could lock the writing tab only so the user could keep on editing other files while that one uploads.


Regards.

+3

Ditch the Forum and move to User Echo

aristidesfl hace 13 años actualizado hace 11 años 2

The only downside of user echo is the topics are sorted by number of up votes by default. 

That causes new threads to get lost, take a while to get seen and loose input.


Fortunately that is a setting which can be set by the forum admins: http://feedback.userecho.com/topic/5427-is-it-possible-to-change-default-sorting-type-as-for-forum/ 

If user echo sorts topics by Last Updated by default the it would work exactly like the forum, but with notifications, votes and better design.


Then just prevent new topics in the forum and leave it for reference.

+3

Hi All, i can not see popup promt (list with possible styles) when i type inline css style in tags

Maxim Vitkovsky hace 12 años 0
Hi All, i can not see popup promt (list with possible styles) when i type inline css style in tags. I type next text,  style="width" and click 'ctrl+space'  and can not see this css propertie 'width'  in popup list,  see image below
Image 139
Can you implement to you very cool program this feature?

+3

Cancelling incremental search does not reset screen position

Ken Chatfield hace 12 años 0

Currently, it's possible to cancel an ongoing incremental search by hitting the escape key, which returns the cursor to the position it was before the incremental search started. This is fantastic, and much used functionality.


However, unfortunately, while the cursor position is reset, it seems the scroll position is not, so most often the active line ends up being right at the top of the screen regardless of where it was before. This is not cool, as it results in a loss of context and is pretty disorientating.


It would be great if this could be fixed.

+3

Minimap Horizontal Scroll Reset Bug

Aaron Scully hace 12 años actualizado por Nick Brunt hace 12 años 1

There is a bug with the document overview on the right/minimap - if you have some text with long lines (word wrap off) and scroll right, the white box around the document outline (if you have that enabled) scrolls off to the right, out of view. Now if you scroll down the document in the minimap, it resets your horizontal scroll position to leftmost. 


I would expect the minimap not to reset the horizontal position. I would also not expect the horizontal scroll position (word wrap off) to cause the highlighted area on the minimap to disappear off to the right.

+3

Make single click on file set focus on sidebar

aristidesfl hace 13 años actualizado por Ben Ma hace 12 años 1
Currently when a file is clicked on the side the focus is set on the editor.
With a second click the focus is set on the side bar.

I think this should be inverted in order to comply with standard behavior.
One click set's focus to sidebar, second click sets focus to the file in the editor.

If you have reasons to prefer the way it is now, would be cool to have an option

+3

PHP Alternate Control Syntax Wrongly Indent

Corey Worrell hace 12 años actualizado por Alex van der Vegt hace 12 años 1
When using PHP's `if`, `foreach`, etc. alternate syntax, the closing line is unindented one tab after typing.

This is intended behavior if I am indented inside the control structure, but if I unindent before typing it out, then it should recognize that and not unindent itself.
    <?php foreach ($items as $item): ?>
        Something here
    <?php endforeach ?>
    // Turns into this after typing closing '>'
    <?php foreach ($items as $item): ?>
        Something else
<?php endforeach ?>
+3

Spellcheck only when word is finished typing

Rohit Vighne hace 11 años 0

I use Sublime Text 3 for prose often with the spellcheck on. It highlights misspelled words as you are typing them, which is annoying. For example, the underline has already flashed four times before I'm done typing "likely". It would be great if the word was only checked after the cursor has left the word; this is how most spellchecks work, including the one I'm using to type this right now.

+3

Allow setting which keys commit auto complete

Joel Thornton hace 13 años actualizado hace 13 años 3

Currently auto completes can be committed by pressing Enter and/or Tab, depending on the "auto_complete_commit_on_tab" setting. Expand this by adding a "auto_complete_commit_trigger_characters" setting which allows the user to specify which characters act as auto complete commit triggers. 


For instance if working with Python I might like to set it as:

"auto_complete_commit_trigger_characters": [".", " ", "Tab"]


.. and use Esc when I want to cancel auto complete. 


A similar option is found in Eclipse, where it gives the user a nice, fine-grained control over how "aggressive" the auto complete behavior is. In particular, allowing non-alphanumeric characters such as ".", ">", and " " to trigger auto complete commit can noticeably increase coding efficiency in some circumstances.