Elm.tmLanguage icon indicating copy to clipboard operation
Elm.tmLanguage copied to clipboard

Elm language syntax highlighting and tool integration for ST2/3

Results 22 Elm.tmLanguage issues
Sort by recently updated
recently updated
newest added

The main README.md says the following under the elm format section: > To enable automatic formatting on every save, Go to Preferences -> Package Settings -> Elm Language Support ->...

I get the following error when running build on Sublime Text 3 when trying to build: [WinError 2] The system cannot find the file specified [cmd: ['elm-make', 'foo.elm', '--output=build\\foo.html', '--report=json',...

Just tried the beta and got: ``` [Errno 2] No such file or directory: 'elm-make' [cmd: ['elm-make', '/Users/rtfeldman/code/elm-effects/src/Effects.elm', '--output=/dev/null', '--report=json', '--yes']] [dir: /Users/rtfeldman/code/elm-effects] [path: /usr/bin:/bin:/usr/sbin:/sbin] [Finished] ``` This makes sense,...

beta
usability

For all other syntax highlighters, I have normal undo, but for Elm, Undo happens one character at a time. ![undo](https://cloud.githubusercontent.com/assets/896230/19335883/9b8efa6a-90bb-11e6-860d-0c5069887fd8.gif) I haven't seen anybody else mention this, maybe it's just...

searched for "Elm Language Support" and could not find it. Is it available?

One of the changes on the table for 0.17 is the following tweak to `module` declarations: ``` elm -- OLD module Foo (a, b, c) where -- NEW module Foo...

When i do module name exposing(..) all my highlighting is screwed up,

As of elm v 0.17 [syntax change](https://github.com/elm-lang/elm-platform/blob/master/upgrade-docs/0.17.md#updating-syntax) highlight is totally broken.

Grammar now accepts both syntax variations: Elm 0.16: `module Queue (..) where` Elm 0.17: `module Queue exposing (..)`

I'm on ST3 build 3114 with the Elm Language Support v0.16.3, but the syntax highlighting doesn't work at all in a file named App.elm. Could you check what could be...