Manuel M T Chakravarty

Results 91 comments of Manuel M T Chakravarty

I am the developer of [CodeEditorView](https://github.com/mchakravarty/CodeEditorView) that @austincondiff mentioned above. One of the fancier aspects of `CodeEditorView` is that it already supports an Xcode-like minimap. It also has Xcode-inspired inline...

@austincondiff wrote, > Not via LSP, what does that imply for new languages wanting support in our editor? The idea of the LSP is effortless support. Would that not increase...

@austincondiff wrote, > so we need to support things like code completion, hover suggestions, decorations like color swatches next to hex values, etc. Is this something that we can easily...

I can imagine that what you like to do is a common idiom. Hence, I wonder whether we cannot find a better high-level way to specify this idiom in Accelerate...

> Anyway given that with a C-like interface it is trivial to implement such schemes (or maybe I'm missing something) I'd suggest exporting appropriate building blocks. Especially that it will...

@tmcdonell Have you got any idea for quick hack to get @js6i going?

Re `zipWith`, I think, it is good API design to stick to the semantics used in the Prelude. That's what Haskellers expect.

I do actually make use of `zip`'s standard semantics, but I think that is secondary. My main point is that semantic changes to an API that a user thinks they...

Backpermute and lifted indexing (which is structurally the same thing) are tricky to handle in fusion as they can lead to arbitrary duplication of work. (In the extreme case, indexing...