atom-language-julia
atom-language-julia copied to clipboard
A Julia language support package for the Atom editor
See https://github.com/julia-vscode/TestItemRunner.jl/issues/70 – recommended by @pfitzseb to make a PR here. The grammar is as follows: ```json "testitem_block" : { "patterns": [ { "name": "keyword.other.testitem.julia", "begin": "^@testitem\\b", "beginCaptures": { "0":...
A small addition to `julia.json` to allow markdown highlighting support in a md multiline string macro. Successfully tested with visual-studio-code.
Can we support syntax coloring for doctests? Case of how this is not working now: https://github.com/JuliaGraphics/QML.jl/blob/main/src/docs.jl
When a type has a unicode letter (like `Δ`) in the name, this "breaks" the name and the hightlight stops before. I'm guessing this is some issue in what letters...
In Python the attributes are highlighted as red and that seems a lot better.
Moved from https://github.com/microsoft/vscode/issues/117388 Cloned this repo - https://github.com/JuliaLang/julia Opened https://github.com/JuliaLang/julia/blob/3230aef393d23a75d6ad5793ca4ca2f8feb62f65/base/array.jl#L5 Looks like there is a documentation syntax with `"""` and I am wondering whether this should be coloured as comments...
Hi, I am using the "|>" symbol heavily in my coding, unfortunately neither the symbol itself nor the function that follows it is highlighted which makes reading the code a...
Tokennize function parameters/arguments so we can highlight like this python example: 
Here is a minimal example in VS Code:  and [on GitHub](https://gist.github.com/aplavin/d9cf1addfff318b7d2ad00f7a30fb4cc). Basically, { in line 3 is just highlighted in a wrong way, but does not affect anything after...
These two statements render in Juno with different colouring for println: ```julia println("x = ") println("(x) = ") ``` Ref: https://github.com/JunoLab/Juno.jl/issues/139