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

+3

Vintage mode ge and f... ;

Saša Tokić vor 12 Jahren 0

It would be nice if Vintage mode supported ge, currently it just goes to the next word end....


Also when you search for a next letter using f(some character) ; should take you to the next occurrence like it does in Vim.

Thanks

+3
Fertiggestellt

Clean up trailing whitespace for auto-indented lines

Scott Bowers vor 14 Jahren aktualisiert von Jon Skinner vor 14 Jahren 0
When coding with auto indent, auto indent will leave trailing white space on empty lines.  When you have environments where trim_trailing_white_space_on_save is not feasible, this forces you to manually clean up after auto indent.
Antwort
Jon Skinner vor 14 Jahren
Automatically inserted whitespace is removed when you start typing.
+3

Syntax highlighting for Apache files

gvillafu1994 vor 13 Jahren aktualisiert vor 13 Jahren 0
It should be possible to see the syntax highlighted for files used a lot of times on Apache servers (with extensions *.conf, *.htacess, *.htpasswd, so on).

For example, highlight words like "RewriteEngine" or "RewriteRule" as keywords,
lines starting with # as comments, code folding if tags like <Directory "C:/my/files/"> </Directory> are written, etc.

Well, you know that more than I do.
Also, I agree SublimeText should print files too, and offer several options for that. Anyway, thanks for this excelent product and keep the effort flowing.
+3

Memorize Code Folding

Yasha Nisanov vor 13 Jahren 0
Not sure if this is already an option that I'm missing... please implement a code folding memory so that a file with previously applied folds remembers those folds on subsequent opens.

Cheers!
+3

cyrillic

Сергей Бехарский vor 11 Jahren aktualisiert von Igor Stepanuk vor 10 Jahren 0
Case-insensitive search in cyrillic languages (in russian) is not working.
+3

Keyboard shortcuts in menu should match actual shortcuts

whee vor 13 Jahren 0
When things are bound to different keys, the updated mapping doesn't show in the menu dropdown. The menu items indicate bindings that no longer work. It'd be nice if the menu updated to show the current keys.
+3

escaped quotemark syntax highlighting

Jeff King vor 13 Jahren aktualisiert vor 13 Jahren 1
There is a bug in the syntax highlighting that does not recognize escaped quotemarks. For example:

"This is properly recognized as a string. \" This is not, but should be." This is but shouldn't be.
+3

Provide universal portable

Mike Lehner vor 13 Jahren 0
Provide a Universal Portable version,

It can have multiple binaries (would probably have to) but each binary could use a single set of settings, packages, etc.  


So:

Sublime Text/sublime text.exe

Sublime Text/sublime text linux.bin

Sublime Text/sublime text mac.bin  


Both look at the setting/packages in:

Sublime Text/Data

+3

Shift + R vim key binding doesn't seem to exist

Stuart Memo vor 12 Jahren 0

In Vim, you can use Shift + R to replace multiple characters. This doesn't seem to work in Sublime. "r" on its own works fine, but Shift + R doesn't.

+3

Python raw string is wrongly interpreted

Jindřich Vavruška vor 11 Jahren 0

The editor wrongly interprets python raw string. Any occurrence of "\" is interpreted as escape, while in raw string it is not.


Example:


root = r"M:\" 


in python this means that the content of variable root is the path of the root directory on disk M:


In Sublime Text this is wrongly interpreted as if the second double-quote was part of the string, not a delimiter. Therefore the string is unterminated and all following text is broken.