Neil Mitchell

Results 224 issues of Neil Mitchell

These are the two functions required for ghcid, both of which are manually written out in https://github.com/ndmitchell/ghcid/blob/0d0a6aff30124bdb701191efd5170d3fadcb5cbe/src/Language/Haskell/Ghcid/Terminal.hs#L33-L39 and could be replaced with Win32 ideally.

The spec at https://github.com/google/skylark/blob/3705afa472e466b8b061cce44b47c9ddc6db696d/doc/spec.md#string%C2%B7codepoints has a function codepoints, which gives the string as a series of points. That seems pretty reasonable to provide. Why did it disappear? The Rust Starlark...

P4
type: feature request

From the spec: > For most types, x += y is equivalent to x = x + y, except that it evaluates x only once, that is, it allocates a...

P4
type: bug

Given the function call `f(**a, **b)` the meaning is clear and precise. But the best Starlark-compliant alternative I could find is: ``` x = dict(a) a.update(b) f(**x) ``` That seems...

P4
type: feature request

The spec defines string escapes like `\a` as `\x07` - but doesn't say if `\x07` is a legitimate escape. The octal escapes list `\119` as `\t9`, but don't say what...

Following up from https://github.com/bazelbuild/buildtools/issues/900, I think Starlark (or at least some extension thereof) should permit a grammar that allows inserting type annotations. Concretely (but informally) we should allow: ``` def...

P2
type: feature request

Currently it only runs the type checker or save. It should run on every character edit, as that provides far nicer feedback.

I can compile hwide, and run it, but the file `http://localhost:8023/static/js/codemirror-4.5/lib/codemirror.js` serves up: ``` Haskell Web IDE Please enable JavaScript. ``` I can fix that by pasting code-mirror into the...

Seems that if I have a cabal.exe compiled with a newer Cabal than I have installed then it doesn't work. Not sure if there is any way round that? Running...

HsYAML is particularly interesting to me, as it compiles with GHCJS, while the normal yaml does not. That would be useful [in HLint, for a web version](https://github.com/ndmitchell/hlint/issues/144#issuecomment-629987174). However, I strive...