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

+2

SQL missing functions

James Brooks 14 jaar geleden bijgewerkt door bizoo 14 jaar geleden 1
The SQL language file (for at least the MySQL language) is missing several functions:
Else, When, End, Case, Then
+2

OS X: Option-Begin/End (jump to beginning or end of file) doesn't work, only Option-Page Up/Page Down

Dan McLaughlin 12 jaar geleden 0

OS X: Option-Begin/End (jump to beginning or end of file) doesn't work, only Option-Page Up/Page Down. I use Option-Begin/End to quickly get to the beginning and end of a file to edit so it would be great if you could fix. Thanks.

+2

sql joins autocomplete based on database structure and foreign keys

Darius Val 11 jaar geleden 0

Hello,


It would be really great feature to have this. Lets say I write such sql:


SELECT event_names.event_name, coefs.event_value FROM coefs

INNER JOIN event_names ON event_names.id = coefs.event_names_id


the part:

ON event_names.id = coefs.event_names_id


is always the same when I join this event_names table to coefs table. So it takes time to type that. And there are many situations like this.


So  think sublime could rread database structure and save it in a file.

WHen I type 


SELECT event_names.event_name, coefs.event_value FROM coefs

INNER JOIN event_names


it could automatically suggest "ON event_names.id = coefs.event_names_id"



+2

JavaScript Compiler

Tiago Duarte 13 jaar geleden bijgewerkt 13 jaar geleden 5

Till this day I have not found an editor that will compile JavaScript code.
I'm left with jshint, http://www.jshint.com/.


I would be great to have this on Sublime Text.


Thanks.

+2

What does the number in the left of goto palette represents?

aristidesfl 13 jaar geleden bijgewerkt 13 jaar geleden 2
Image 79
+2

ctrl+tab and ctrl+shift+tab bug

jdc0589 13 jaar geleden bijgewerkt door adzenith 13 jaar geleden 1
Commands do not seem to always move in the correct direction through tabs. Open 3 tabs up and go back and forth a bunch, at some point mine always does something unexpected
+2

When viewing a file in Folders, store the view position even though the file has not been opened for editing.

Stavros Papadopoulos 13 jaar geleden 0
This will enable the user to switch back and forth between an open file that is currently being changed and a file that is simply used for reference. As things stand now, both files need to be opened for editing.
+2

Trimming white spaces can make lose undo history

Santiago Borrazás 13 jaar geleden bijgewerkt door Igor Verstakov 11 jaar geleden 1
When "ensure_newline_at_eof_on_save", "trim_trailing_white_space_on_save" or "trim_automatic_white_space" are enabled, I can loss my undo history when the editor removes the white spaces after saving.
This occurs on most text editors, because if you do something, undo and save, the save remove empty spaces, so when you want to redo what you did, the last action is that space removing, instead what you really do (not the editor)
+2

External open: colon in filename

U N. 13 jaar geleden bijgewerkt door Duncan Mac-Vicar Prett 13 jaar geleden 1

External opening of a file (i.e. from file browser), if the filename or path contains a colon (:), does not work.
 sublime_text lab\:\ 1.txt

 sublime_text "lab: 1.txt"

both open an empty buffer, named "lab". I guess the part after ":" is interpreted as a line number to go to

+2

Setting to ignore certain package on specific syntax

chocolate camera 12 jaar geleden 0

It would be nice to have a User Setting to ignore specific packages when using a specific syntax.