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

+19

Autosuggest for variables containing dashes doesn't work

Alexander Wörndl il y a 12 ans 0

The 'extract_completions' method seams to have a bug when it comes to variables that contain one or more dashes.


Testcase


$button_color_main: #0f0 /* works as expected */

$button-color-secondary: #f00 /* will auto complete only the word '$button' */


The bug is double checked and confirmed, more here: https://github.com/alienhard/SublimeAllAutocomplete/issues/18


+19

'Show build results' doesn't make sense if already shown (turn into 'Show/Hide' and move to View menu)

iconv il y a 14 ans 0

First, Tools->Build Results->Show Build Results menu item does nothing if those are present. It should change name to 'Hide Build Results'.


Second, it would be better to move this under View menu since most Show/Hide items are already there.

+19

Style Token feature from Notepad++

Razvan Taranu il y a 13 ans mis à jour par siddumummy il y a 8 ans 3

A way to highlight certain pieces of text with different colors. Like the current highliting when you find a word, but I can assign permanent colors to the text.


Very useful when tracking variables / file logs through large files.

+19

Add incremental find and replace across files

Russell Keith-Magee il y a 13 ans 0
If you do a Find and replace on a single file, you get options to "find", "replace", "find all" and "replace all". This means you can interactively review every replacement that is going to happen in a file.

However, if you do Find and replace across files, you only get "find" and "replace" (which are implicitly "find all" and "replace all"). This means you can't interactively review changes -- you have to make all the possible changes, then go back and review them.
It would be nice if the feature set of find and replace on a single file were also available over multiple files.
+19

Asynchronous file saving

Nox10 il y a 13 ans 0
I'm usually working on files connected by SFTP or SMB. The delay that my OS takes to save the files may vary alot. I would love to still work on my files, or other files at that, while Sublime Text 2 is currently writing to the network or filesystem.
Currently all Sublime Text 2 windows are freezing. 
Thanks alot
+19

URI Scheme handler

Tingan il y a 13 ans mis à jour par anonymous il y a 9 ans 4
It would be nice if sublime could develop this feature:

http://blog.macromates.com/2007/the-textmate-url-scheme/

I think a lot of people needs it

+19

Sublime is extremely slow

Solid Water il y a 13 ans mis à jour par віталік козловський il y a 10 ans 0

What I mean is when I type text, it is very slow to appear and it appears in bursts.  Same thing with erasing and scrolling.  Kind of like network lag in video games.  This is on a fresh install on Ubuntu 12.04 with no plugins.  The system is fast otherwise with a fast cpu and 16 gigs of ram.  


After I erase all the settings reverting to "fresh install", it is fast for about two minutes on a normal text file and then becomes very slow again.

+19

Code Hinting for HTML Attributes, CSS properties, PHP, Javascript

Thodoris Tsiridis il y a 14 ans mis à jour par Maurizio Mangione il y a 13 ans 1
I would like if Sublime supported Code Hinting for all major languages like JS, HTML, CSS, PHP etc. It's something that is missing.
+19

Textmate style word completion

Chris Leonello il y a 14 ans mis à jour par Philip Rosen il y a 12 ans 21
Implement word completion as is done in Textmate.  Explained best at the Textmate web site (http://manual.macromates.com/en/working_with_text#completion):

"TextMate has a simple yet effective completion function on ⎋ (escape). It will complete the current word based on matches in the current document. If there are multiple matches, you can cycle through these by pressing ⎋ continuously. It is also possible to cycle backwards using ⇧⎋.


The matches are sorted by distance from the caret, meaning candidates which are closer to the caret will be suggested before candidates farther away."


This is an improvement over the current tab-completion because:


  1. The tab key is also used for tabbing.
  2. It cycles continuously.
  3. It is based on nearest matches.

+19

Use Textmate fold markers

adzenith il y a 14 ans mis à jour par Felipe Prenholato il y a 14 ans 1

 Textmate grammars have specifiers for where possible folds should begin and end (foldingStartMarker and foldingStopMarker). It would be excellent if these were supported in Sublime Text 2 to make it easy to fold functions etc.