bengolds

Results 19 issues of bengolds

## Description If you type in a function that has a placeholder in it, you shouldn't be able to delete the placeholder; you should only be able to type over...

feature

When I do a file search, it'd be great if information on my recently opened files was included in order to: 1) Speed up the file fuzzy search 2) Sort...

enhancement

**Quick Summary:** When writing a recursive function that has continuations, it appears the values inside the continuation don't get closed over properly. When the continuation is called, values from the...

There seems to be an issue with type inference when we use `Parser.Advanced` alongside `Parser`. I've attached a pretty minimal repro; I can't quite get it more minimal than this...

bug
type inference

In 1.7, guards were added to prevent users from renaming certain reserved symbols -- you can't rename `let` or `if` to something else and you can't rename values imported from...

enhancement
good first issue
Hacktoberfest

The following code crashes, in a really difficult-to-debug way: ``` List.repeat (1/0 |> floor) "a" ``` The problem here is that `List.repeat` simply crashes with an out of memory error...

Please review our [Contribution Guidelines](https://github.com/lpil/elm-companies/blob/master/CONTRIBUTING.md) to ensure your changes abides by it. Review your changes and complete the checklist below. - [x] Company name - [x] Company description - [x]...

Algebrite chokes on parsing any expression with a unicode greek letter. EG: 3*γ

It seems that parsing certain expressions causes the uncaught exception `the name "..." cannot be used as a symbol name.` The two examples I've found are: ``` \\frac{x}{} \\text{ cm}...

If you're missing an argument, addition and subtraction parse inconsistently compared to multiplication and division. ``` parse('x * ') => [ 'Multiply', 'x', 'Missing' ] parse('x + ') => 'x'...

bug