bengolds

Results 10 comments of bengolds

I find myself wishing I could add exceptions (a la `TriggerWords`) to this, specifically for `Html` or `elm-ui`'s `Element`. Even in the [introduction to Elm guide](https://guide.elm-lang.org/webapps/modules.html), Evan mentions that he...

@trickstival -- sadly, that extension doesn't quite work. Its fallback to searching the whole directory is super slow right now. @iwfan -- I'll give that a try -- thanks for...

I've finally dug into this a little bit, and found the cause of the error: the `operatorCache` only [indexes operators by name](https://github.com/elm-tooling/elm-language-server/blob/e516533cd4b6ea590f8c9e15da92ab115bb245f4/src/compiler/typeChecker.ts#L687-L715). However, the `Parser` and `Parser.Advanced` packages both define...

Simple fix [here](https://github.com/bengolds/Algebrite/commit/ce9b8b91c647733df06cf7b1cc9a58cf5db28e40). May not be what you want, but it does work for now.

Note -- this seems to work if you use `LatexSyntax` or the global `serialize`, but not `ComputeEngine`. ie: ``` import {serialize, parse, LatexSyntax, ComputeEngine} from '@cortex-js/compute-engine'; const latexSyntax = new...

Not sure if this is still open or if you'd rather I open another bug. The API works really well! The one thing I miss is [`animation-play-state`](https://developer.mozilla.org/en-US/docs/Web/CSS/animation-play-state). As far as...

I ended up using: ``` attribute "style" ("transform: scale(" ++ xScale ++ "," ++ yScale ++ ")") ``` for scaling parentheses based off of their content, a la [KaTeX](https://khan.github.io/KaTeX/). I...

Jeremy, is this still the case on the most recent build?

Good to see another language's direct experience with LSP's limitations. I added a comment in [the specs doc](https://docs.google.com/document/d/1ETeZeN17hqM4yui4iqBv1jwO8HryDZyel2kdcxTCGGA/edit?ts=59b7bf23#) about a proposal for working outside of the protocol's defined featureset. In...

Quick note on this -- text that is also wide (for example, italics) gets cut off too, even with the `lineHeight` fix: https://ellie-app.com/7qxCJtPdYa1/6 Is the overflow: hidden piece strictly necessary?