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

+4

Select text / Ctrl+F / Enter inserts newline instead of searching

Andrei Gheorghe 9 років тому оновлено Kevin Thomas 9 років тому 1

This most definitely is a bug as I can't imagine why it should work this way:


- select text using mouse

- press Ctrl+F

- release Ctrl

- press enter


expected: search should start

what happens: text in the Find box is replaced by a newline :))


Linux build 3083

+3

Option to disable font ligatures on the current line.

andreansani 7 років тому 0

Like this:



It makes it easier to edit code.

+3

Toggle sidebar button on status bar

Porkchops 8 років тому 0

A button one the very left side similar to one for toggling bottom panels / toolbars (such as the console).

+3

Close to tray

zloidooraque 9 років тому оновлений 9 років тому 1
+3

Could we, East Asian Language users, get some more enhanced support for languages like Korean and Japanese?

Kyle Kim 9 років тому 0

I have recently bought Sublime Text 3 and I really like the features of it.


I could definitely say that ST is one of the best Text Editing Software that I've ever used without a doubt.


However, the one thing that I'm bit frustrated with it is that ST still has poor support on those East Asian languages like Korean and Japanese.


Every time I type in Korean, it pops out IME window and it is hard to see.


I know that there are some plug-ins which eases such issue, but it does not fulfill my expectations.


Could we please get some further enhanced support for those languages.


Thank you.

+3

More control over multiple selection

Jamie Webb 13 років тому оновлено robertcollier4 12 років тому 1
Multiple selection is neat, but operating it can sometimes be troublesome. I'd love to be able to do the following, which to best of my knowledge is not possible now:

  • Add cursors with the keyboard. I guess this is hard in general, and we have ctrl-d, but it would be nice to at least have 'extend cursor down one line', i.e. rough equivalent of shift-right-drag.
  • Remove cursors, i.e. ctrl-clicking on an existing cursor should remove it rather than doing nothing.
  • Undo a ctrl-d. E.g. I wanted to select every instance of a local variable. I hit ctrl-d 11 times rather than 10, and end up selecting the same name in a different function. Currently I have to start again.
  • Also, I think ctrl-d might be better with its own word-selection behaviour rather than using the setting from ctrl-f. Specifically, it should restrict matches to whole words iff the initial selection is a whole word. 
+3

define events for a project

Charles Bourasseau 12 років тому 0

It would be great to have the possibility to define event for a project. If a file is saved or created, a command or a build will be started.

For example:


{

  "event_systems":

  [

    {

      "event": "onSaved",

      "cmd": [

        "sh build.sh"

      ]

    },

    {

      "event": "onCreateFile",

      "build": "MyBuild"

    }

  ],

  "build_systems":

  [

    {

      "name": "MyBuild",

      "cmd": [

        "mvn", "build"

      ],

      "shell": "true"

    }

  ],

  "folders":

  [

    {

      "name": "My project",

      "path": "/path/to/my/project"

    },

  ],

  "settings":

  {

  }

}

+3

Linewrap with last word before "."

Dennis Treder 12 років тому 0

For writing "plain text" for journals e.g.: a "." at the end of a line will be wrapped to the next line alone (without the last word). I'd love to have this changed! :)


Example:


"This is a sencence. And this..."


If the lineend was reached at the end of "sentence", the wrap in sublimetext looks like this:


"This is a sencence

. And this..."


So the last word isn't moved to the next line. Bad to read for normal text.

+3

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

Tihomir Saulic 13 років тому оновлений 13 років тому 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 12 років тому 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.