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

+2

Copy, paste with nothing selected (i.e. a whole line) shouldn't break up current line

codex vor 13 Jahren aktualisiert von Danny Fritz vor 13 Jahren 2
When I copy with nothing selected, I expect to the paste to paste an entire line, not break up the current line at the cursor.  Example:

foo bar<copy this line using zero-selection method>
ba<paste with cursor here>z

I want the result to be:
foo bar
baz
foo bar

And not:
foo bar
bafoo barz
+2

Project listing in the side bar for quick switching

Michael Irigoyen vor 12 Jahren 0
I understand you can do CTRL+ALT+P to bring up the Switch Project window, then click on the project you want to switch to. However, I feel like being able to turn on a listing of your projects by name in the side bar would be much more useful.
+2

Changing the surround text

Adrian Olaru vor 13 Jahren aktualisiert vor 13 Jahren 0
Typing a quote with text selected will surround the text with quotes, unless you have disabled the auto_match_enabled setting. That's a nice feature.

What about changing an existing surrounding text? What if selecting an already quoted text and pressing another matching char (a double quote for example) will change the surround? That will be a nice feature to have...
+2
Abgelehnt

Keyboard shortcut to toggle column select mode, like alt/opt on TextMate

mrmachine vor 13 Jahren aktualisiert von Jon Skinner vor 13 Jahren 1
Antwort
Jon Skinner vor 13 Jahren
On OS X, column selections can be created by:

- With the mouse by holding down alt while dragging
- With the keyboard via Ctrl+Shift+Up/Down
+2

Download links do not work

Ahmed Subhani vor 11 Jahren 0
All of the download links for Sublime Text 2/3 Windows 32/64 Installer/Portable do not work for me, I always get the following screen:
400 Bad Request
Your browser sent an invalid request.

I am downloading from Pakistan.
+2

emmet built in!

Chris vor 11 Jahren 0

Would love to see the plugin emmet come standard on sublime text 3, had a problem installing with version 2 (was not very user friendly) 


+2

Vintage Visual Mode Jump to Matching Bracket

Jonah vor 11 Jahren 0

When using Vintage for Vim visual mode, it would be nice if some Sublime shortcuts for navigation within a file worked while preserving the selection mode.  The one that comes to mind is if I hit "Esc v" and hit "Ctrl+m", it will leave visual mode and jump to the matching brace without selecting the area in-between.


+2

External File Change or Move

Unknown vor 12 Jahren 0

On Windows there is no warning if you change or move a file. Sublime doesn't even recognize the change. For Example: If you move a file in the explorer from  one position to another and Sublime is open, Sublime will save the moved away file again under the old position. A function like notepad++ would be cool. 

+2

Tcl if/else does not reindent properly

Jeremy Cowgar vor 13 Jahren aktualisiert vor 13 Jahren 0

The code block (in the midst of more advanced code or not) does not indent properly using the reindent feature:

if { 1 } {

    puts "Hello"
} else {
    puts "Goodbye"
}

The reindent option ignores the outdent on the } else { line. It indents to:

if { 1 } {

    puts "Hello"

    } else {

        puts "Goodbye"

    }


 

+2

Java package directories detection

Yehonatan Levi vor 12 Jahren aktualisiert vor 11 Jahren 2
in java often we produce long directories path such as org.example.whatever.etc which creates under /src/org/example/whatever/etc/ which when unfolding results in a lot of unused space the browser could detect empty directories and show that path as one element like eclipse does

example
Image 140