language-scala icon indicating copy to clipboard operation
language-scala copied to clipboard

Language support for Scala in Atom.

Results 13 language-scala issues
Sort by recently updated
recently updated
newest added

Is someone still maintaining this repo ? ### commit 2928469 Fix #56 ### commit 62cbf5f fix another (not raised) issue: trailing parenthesis were colored with the class name #### before...

This (slimmed down) function: ```scala def consume (c : Char) { state = (state,c) match { case (HeaderLine(ln),'\r'|'\n') => { processHeaderLine(ln) ; NextLine(""+c) } } } ``` renders as this:...

Do you plan to add [tree-sitter-scala](https://github.com/tree-sitter/tree-sitter-scala) support into your nice plugin? Similar to other `atom/language-*` packages like: https://github.com/atom/language-javascript

Atom 1.8.0 language-scala 1.1.6 ![screen shot 2016-07-18 at 1 21 45 pm](https://cloud.githubusercontent.com/assets/16074300/16925616/a03f4f2a-4cea-11e6-8c33-1dc02a236a4f.png) The first right-bracket shows highlights correctly, but all right brackets after the first closing bracket are not highlighted.

bug

The following code gets highlighted incorrectly: ```scala def `'`() = () `'`() ``` [Demo](https://github-lightshow.herokuapp.com/?utf8=%E2%9C%93&scope=from-url&grammar_url=https%3A%2F%2Fgithub.com%2Fatom-community%2Flanguage-scala%2Fblob%2Fv1.1.9%2Fgrammars%2Fscala.cson&grammar_text=&code_source=from-url&code_url=https%3A%2F%2Fgist.githubusercontent.com%2Fmkantor%2F127b02ac08b37e42ca84610b34cfb824%2Fraw%2F8f3172896fbafd31db7f81249e4bed9aaec2aeb4%2FBacktickSingleQuote.scala&code=). This exact same bug is present in the Scala TextMate bundle (mads-hartmann/scala.tmbundle/issues/59), which is currently used...

The following code gets highlighted incorrectly: ```scala def `/*`() = () `/*`() ``` The second `/*` is being treated as if it were the start of a block comment, even...

The following code gets highlighted incorrectly: ```scala 0 #:: Stream(1) ``` The second `:` is not being highlighted as part of the method name, even though it is. [Demo](https://github-lightshow.herokuapp.com/?utf8=%E2%9C%93&scope=from-url&grammar_url=https%3A%2F%2Fgithub.com%2Fatom-community%2Flanguage-scala%2Fblob%2Fv1.1.9%2Fgrammars%2Fscala.cson&grammar_text=&code_source=from-url&code_url=https%3A%2F%2Fgist.githubusercontent.com%2Fmkantor%2F127b02ac08b37e42ca84610b34cfb824%2Fraw%2F8f3172896fbafd31db7f81249e4bed9aaec2aeb4%2FStreamConcatenationOperator.scala&code=). This...

I think this issue might be reported with different triggers. I did not see this particular trigger so I've added a new request in the hopes that it help clarify...

One of the two merged in v1.1.9 pull-requests: https://github.com/atom-community/language-scala/pull/52 or https://github.com/atom-community/language-scala/pull/42 broke something. I'm using Scala grammar when working with the Play Twirl templates. It's a mix of HTML and...

The change log stops at version `1.1.3`. Please consider updating it.