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

+2

Vintage Visual Mode Jump to Matching Bracket

Jonah 11 років тому 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 12 років тому 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 13 років тому оновлений 13 років тому 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 12 років тому оновлений 11 років тому 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
+2

Holding Option and clicking the button should performa column select

Caleb Land 13 років тому оновлений 13 років тому 6
If I have a cursor, with no selection made, and I hold the option key and click somewhere else in the document, Sublime should column select from where the cursor was to where I clicked.
+2

Variable name edit (PHP)

David Čepelík 13 років тому 0

When I double click variable name and paste a new one, including the dollar sign: (PHP, [...] = selection)


1. $varName = "value";

2. $[varName] = "value";

3. Paste [$newVarName] from Clipboard

4. $newVarName = "value";


the dollar sign isn't added again, which is very comfortable. However, when i paste an expression, like:


1. $varName

2. $[varName]

3. Paste [$newVarName = "value"] from Clipboard

4. $$newVarName = "value"


and it does not... It would be very nice if it worked in this case too :).

+2

kubuntu-ST3. not save in a samba share.

Fernando Figaroli (FerX) 11 років тому 0
In kubuntu (13.10) I installed ST3.
I have a big problem when I open Dolphin in a samba share.
ST3 opens the file but can not save it. Continue processing but does not save.
If I try with another editor (Kira) works without problems.
I tried putting the setting "atomic_save": false, but nothing changes.
Has anyone had the same problem?
+2
Fixed

sublime text 2 freaks totally out if running svn up

Gi7mo! 13 років тому оновлено Jon Skinner 13 років тому 1
if i run "svn up" in a folder which is loaded into sublime text 2 it ends up in 100% cpu load. there is no recovery, only quit sublime text 2 is a solution
happens on osx, with a large repository, only the repository folder is loaded into sublime text 2
Відповідь
Jon Skinner 13 років тому
Fixed in 2181
+2

Autocomplete: snippets shadow variables with the same name

Patricio Palladino 12 років тому оновлено robertcollier4 11 років тому 1
When you have a snippet and a variable with the same name, autocomplete only gives you the option of the snippet.

The variable should also be present, and IMO should have more priority.
+2

Duplicating a line shouldn't take selection into account, but whole lines

GarciaWebDev 12 років тому оновлений 12 років тому 2
It's very useful to select a bunch of lines by dragging the mouse cursor in the middle of those lines and then duplicating those. But line duplication currently only duplicates selection, it's tedious.It should work taking whole lines into account like Delete Line function (Ctrl+Shift+K) does.Also, after doing Duplicate Line command, newly duplicated lines should be placed on new line below last selected line, and not in the same last line of the selection. It's tedious.