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

+48
Lõpetatud

Remove a single folder folder from a project

Russell Keith-Magee 13 aastat tagasi uuendaja Jon Skinner 13 aastat tagasi 1
Vasta
Jon Skinner 13 aastat tagasi
Added in build 2027
+47

ctypes can't be imported in Linux

Fredrik Ehnbom 12 aastat tagasi uuendaja 美龙 谢 11 aastat tagasi 8
Go to the python console and type "import ctypes" in build 2139 and you'll get:

>>> import ctypes
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File ".\ctypes\__init__.py", line 10, in <module>
ImportError: No module named _ctypes
+47

Clojure auto-indentation is almost never correct

Anthony Grimes 12 aastat tagasi uuendatud 11 aastat tagasi 2
There are a number of cases where auto-indent isn't correct in Clojure. Here are some examples:

https://refheap.com/paste/797

Function arguments are supposed to be lined up. The vector should be lined up with the + sign, like this:


Another example is this:


when it should be:


This is just totally broken.  Notice how in the st2 formatted example, it's like the keywords are indented against the -> instead of the mongo/fetch function. It's pretty crazy. I'm sure there are more quirks but this is just what I ran into playing for a few minutes.

P.S. I apologize for pasting code elsewhere. I couldn't figure out how to format it nicely in uservoice.
+46

Sort numbered files/folders in the sidebar correctly

Jeff Byrnes 12 aastat tagasi uuendaja Daniel Baumann 11 aastat tagasi 28
Currently, a series of files or folders which are numbered are not sorted correctly in the sidebar if they enter the hundreds. For example:

1
10
100
101
2

While I know this is often how *nix systems sort, I think many would agree that the intent of a series of numbered folders would be to sort correctly, as if they were integers.
+45

task-focused interface (like eclipse mylyn)

Robert Kasanicky 12 aastat tagasi uuendaja Eugene Bezludny 8 aastat tagasi 1
As an eclipse user I really miss the Mylyn functionality (quick demo http://www.youtube.com/watch?v=IEyjpDrHCjc)

In my mind a basic task-focused interface would cover:
1. task creation/import - I can define local tasks and there's an API for writing connectors that retrieve tasks from remote issue trackers
2. every task carries it's own persistent context (primarily which files are open) and when I activate a task the context is restored
+45

Allow hiding of the title bar

Andrew Rabon 12 aastat tagasi uuendaja Jae Page 8 aastat tagasi 3
Basically make it more like Chrome and integrate the tabs and the title bar into one, to preserve pixels.
+45
Lõpetatud

Ability to disable/hide scroll bar(s)

Jan Bader 13 aastat tagasi uuendaja Jon Skinner 11 aastat tagasi 4
Please add the ability to hide the scroll bar(s). 

I barely use them, since it slows me down to use the mouse and if I use the mouse, i usually use the mousewheel.

Also, the vertical scrollbar is redundant with the minimap.
Vasta
Jon Skinner 13 aastat tagasi

This can be done by setting the overlay_scroll_bars global setting to "enabled".


This was added in 2091

+45

Function parameter auto-complete

Caleb Morris 12 aastat tagasi uuendaja Bruno Lemos 11 aastat tagasi 1
When auto completing a function pop up a small off-set message of the parameter inputs.
ex: foo( int a, real b ); // declared above
when foo auto-completed "foo(" is put and a message shows "foo( int, int )"
+45

Set font size per pane

Joel Thornton 13 aastat tagasi 0
Allow the user to persistently change the font size independently for each pane in the UI. For example, the user should be able to use a smaller font size for the console pane than their main text buffer.
+44
Fixed

Better handling of huge files

n00ge 13 aastat tagasi uuendaja Jon Skinner 11 aastat tagasi 9
When handling large sql files (25k lines and up) it takes a while (12 seconds+) to open the file and manipulate. Editing is also quite slow.

I'm not expecting miracles, but is there anything that can be done here? Maybe look at the file size and don't apply syntax highlighting initially for x mb size files and up?
Vasta
Jon Skinner 13 aastat tagasi

This was fixed in 2091.


The SQL grammar file had a degenerate regex that could cause significant slowdowns.