vscode-scala-syntax
vscode-scala-syntax copied to clipboard
Visual Studio Code extension for syntax highlighting Scala sources
I have noticed that the function/method calls don't get any color when I configure it using the `meta.function-call` scope: **Settings.json:** ``` { "scope": "meta.function-call", "settings": { "foreground": "#82AAFF" } }...
The current image at https://github.com/scala/vscode-scala-syntax/blame/master/README.md#L9 shows some older syntax highlighting. For example, Char and String changed to be properly highlighted based on syntax and not pseudo-semantics. We should also have...
There's no Scala official support in https://github.com/microsoft/monaco-languages . Would you guys contribute to this repo soon?
`+` is `keyword.operator.arithmetic.scala`, `:` is `keyword.operator.scala`. This is likely also a problem for `:++`, etc We can solve this by adding a rule highlighting `${opchar}{2,}` as an operator.
@MaximeKjaer: > Two small things stand out to me here: > > 1. The dots aren't highlighted. I think we should aim to highlight the dots in the qualified name...
Hi Team, My name is Alan Yu, a PM from Microsoft on the SQL Server team. We are working on [Azure Data Studio](https://aka.ms/getazuredatastudio), which is a cross-platform, multi-DB tool for...
> From http://tree-sitter.github.io/tree-sitter/ Tree-sitter is a parser generator tool and an incremental parsing library. It can build a concrete syntax tree for a source file and efficiently update the syntax...
Language extensions can provide rules for increasing/decreasing indentation when writing new lines and copy-pasting code. The VS Code documentation for this feature is here https://code.visualstudio.com/updates/v1_14#_auto-indent-on-type-move-lines-and-paste Some scenarios where the current...
Hello! I am working on some macros recently on VS Code. Nevertheless I find it quite bothering that whenever I try to create a quoted expression, the plugin automatically closed...
I really like the idea of [sbt-example](https://github.com/ThoughtWorksInc/feature.scala/blob/594be4937f578c873e3dccdd601c7eaeeb244402/Factory/src/main/scala/com/thoughtworks/feature/Factory.scala#L17), but also aside that it would be nice to have some (minimal) highlighting for code in comments. ```scala /** * Usage: * {{{...