Giter Club home page Giter Club logo

elm-syntax-highlighting's Issues

Your thoughts on autocompletion

From the description of your workflow here, it seems clear that you don't place the same value on language-aware autocompletion that a lot of programmers do. Do you remember if you've elaborated on this anywhere?

Snippets

Hi, I did submit couple of pathes to the older Elm sublime package. But there was a lot of mes too so I think a fresh start will bring good thinks to the table.

I use snippets and think they are very useful when you want to get started. So you dont need to look up the syntax.

Do they fit in this package or is that a separate package too?

top-level type declarations are categorized differently than let declarations

Given the following code:

helloStr : String
helloStr = "hello, world"

sumList : List Int -> Int
sumList =
    let
        helper : Int -> List Int -> Int
        helper sum xs =
            case xs of
                head :: tail -> helper (sum + head) tail
                [] -> sum
    in
    helper 0

We can observe that types in top-level declarations are categorized as storage.type.elm while types in let declarations are categorized as constant.other.elm.

Screenshot 2022-12-07 at 19 08 29

Screenshot 2022-12-07 at 19 08 44

This is somewhat unfortunate when using a color scheme such as Alabaster as it causes inconsistent highlighting.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.