Andy

Results 83 issues of Andy

I noticed a deprecation warning in the logs. The message suggests to use `window.createStatusBarItem`. https://github.com/iamcco/coc-spell-checker/blob/a76ebbff41fec61bb7a3c2556a670720db3f9ff9/src/statusbar.ts#L10 ## Warning > WARN (pid:1874436) [workspace] - workspace.createStatusBarItem is deprecated, please use window.createStatusBarItem instead. at...

Most other linters (eslint, tslint, scalastyle, pmd) support a syntax to ignore only a single line. This can be necessary if you want for example integrate `elm-analyse` in your tooling...

discussion

# Example ```elm myButton : Bool -> Element msg myButton newTab = (if newTab then newTabLink else link ) [] { url = "https://google.de" , label = text "Label" }...

`elm-format` currently replaces `exposes (..)` with the explicit names. This behavior is discussed and [may be removed](https://github.com/avh4/elm-format/issues/578#issuecomment-515697125) in the future. In `elm-analyse` there is a `ExposeAll` check that can be...

Would be cool to apply all fixes at once. The solutions are pretty reliable and I’d be happy to trigger all changes with a single button in the web ui...

### Issue If there are a bunch of problems, there is a list: ![image](https://user-images.githubusercontent.com/13085980/46286710-6ec9ba00-c580-11e8-8ce1-b61c39112527.png) The button to automatically resolve the issue is in a modal: ![image](https://user-images.githubusercontent.com/13085980/46286734-8143f380-c580-11e8-8b57-145bb9208808.png) ### Improvement We could...

I noticed the startup of the application takes currently around 3-4 seconds. Configuration, cache and history are vanilla. How are chances to improve this and lower the startup time? I...

enhancement
help wanted

### Is this a bug report? Yes. When trying to use `create-elm-app` with npx, it failed with url resolution for string replacement of favicon and manifest. ``` URIError: Failed to...

There is [a proposal for record dot syntax](https://ghc-proposals.readthedocs.io/en/latest/proposals/0282-record-dot-syntax.html) and the [preprocessor](https://hackage.haskell.org/package/record-dot-preprocessor). Although this is probably still early, support for the new syntax would be awesome. One thing I notices is...

enhancement
language extension support

I personally would prefer other highlights than `#` in diagnostics. So I played around with some replacements. My prefered approach would be escape sequences. I tried it manually and with...

enhancement