Martin Janiczek

Results 115 comments of Martin Janiczek

I have tried something with `termopen()` instead of `system()`, but I don't know enough VimScript to figure it out (right now) and it errors out. ``` let s:Fzy = {}...

@casr I hacked on it a bit and this works! ```vim function! FzyCommand(list_command) abort let l:callback = { \ 'window_id': win_getid(), \ 'filename': tempname() \ } let l:fzy_command = 'fzy'...

I imagine if `--report=json` is active, all the output should be those JSON lines. The `+`-boxed message shouldn't be shown. An alternative is to send some of it to stdout...

The left panel of Keyboard > Shortcuts switchboard could be a good place for applications to plug themselves into? :) ![global_keyboard_shortcuts](https://user-images.githubusercontent.com/149425/41217616-b9e7b800-6d58-11e8-874b-6c5a6ea1223e.png)

@nicosampler @jjant I hit this issue too, adding `Content-Type: application/json` header to the response from my GraphQL server helped. It seems like here: https://github.com/prisma/graphql-request/blob/master/src/index.ts#L119-L126 If there's no Content-Type, the function...

Another run option possibility, I think also available in Erlang QuickCheck: **run for x seconds**

Haskell QuickCheck shows first few most used fuzz values + their percentage. Might be good for sanity check, yeah.

My usecase for `andThen` is for the ["update" tests](Janiczek/elm-architecture-test), when I want the Msg fuzzers not to be standalone but to depend on previous model (see branch [fuzzers-dependent-on-model](https://github.com/Janiczek/elm-architecture-test/blob/fuzzers-dependent-on-model/src/ArchitectureTest/Internal.elm#L149)). 1. I...

@jwoudenberg Wow, the `randomWalk` idea seems really nice! From a read-through, I wonder about hardcoding Msgs into these tests (ie. `Input "tom"` in the docs). Does that limit what bugs...