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

+1

Fixes for scala syntax

Matt Hauck 13 jaar geleden • 0
The scala language file messes up a bit when it comes to triple quoted strings that contain strings. 

Update the repository.strings.pattern first element to the following: 
<dict>
  <key>begin</key>
  <string>"""</string>
  <key>end</key>
  <string>"""(?!")</string>
  <key>name</key>
  <string>string.quoted.triple.scala</string>
</dict>

+1

Support for inline coffeescript in HTML

Benjamin Lupton 15 jaar geleden • bijgewerkt door Jason Tackaberry 14 jaar geleden • 1

With the introduction of https://github.com/jashkenas/coffee-script-tmbundle


We could support inline coffeescript in HTML. This is done with:
<script src="text/coffeescript">...</script>

Thanks.

Cross posted here as well: https://github.com/jashkenas/coffee-script-tmbundle/issues/66
+1

Problem with reloading files and mouse scrolling

Kevin O'Connor 15 jaar geleden • 0

 If an open file is reloaded because it changed and the text is longer than the original window, the scrollbar does not adjust until you hit keys, so mouse scrolling doesn't work.

+1

Folder renaming bug

David Tang 14 jaar geleden • bijgewerkt door Matt Moore 13 jaar geleden • 1
If you change the name of a folder to the same name but change the casing of the letters, the editor won't recognize it and it will still show the old, unchanged name.
+1

Provide an icon for creating shortcuts

Scott Bowers 16 jaar geleden • bijgewerkt door Jon Skinner 16 jaar geleden • 1
I don't know how sublime works in Windows or Mac, but in Linux, there isn't a way to create an shortcut with Sublime's Icon on it. I currently have to use a bo-bo icon for sublime's shortcut.
+1

HTML (Rails) should be HTML (Ruby)

Nelson Blaha 14 jaar geleden • 0

.html.erb file extension is used in non-Rails Ruby frameworks. The format should be referred to as HTML (Ruby)

+1

Parameters on javascript functions lost color inside function

jorgemason 14 jaar geleden • 0
function ( par1 (color), par2 ) {
   par1 (color white)
}
+1

Release Sublime Text as Free software

Rory Holland 14 jaar geleden • bijgewerkt door glyph 14 jaar geleden • 1
I would pay for a binary of Sublime Text if the sources were distributed for free.
+1

ability to add language syntax bundles in User directory

Vincent Côté-Roy 15 jaar geleden • bijgewerkt 15 jaar geleden • 0
it would be great to have the ability to add language syntax bundles under the User directory, (or perhaps in a separate, optional "User Packages" directory), so that we could maintain our language bundles separately from the default ones. that way one only has to keep track of / update that one folder when moving between machines.
+1

Add `fail` to Ruby special-method syntax

Mads Ohm Larsen 13 jaar geleden • 0
`fail` is missing from the special-methods array in Ruby.tmLanguage.

This can simply be added to the list, so it is highlighted.