Mikkel Kjeldsen

Results 43 comments of Mikkel Kjeldsen

@exhuma I'm attaching to this comment a patch that loosely demonstrates two different approaches: the one I discuss in my previous comment, as well as another I discovered sometime after,...

Here is the actual `post-init` hook change, against e42c1d705b228905579c442de11638734a832772: ```diff From 4a4c2f49a34311ce813a4a2c695b94a32e14cdc7 Mon Sep 17 00:00:00 2001 From: Mikkel Kjeldsen Date: Mon, 1 Jul 2019 09:49:21 +0200 Subject: [PATCH] Create...

Yes; to be clear, the example demonstrated in the README works as advertised.

Neither is there any warning that it will silently generate invalid SQL, but only in some circumstances.

I'm an avid `dotnet-repl`-on-Linux user. I would have phrased this report differently but I share the sentiment: `dotnet-repl`'s interactivity is pretty jarring in a GNU Readline context. I would consider...

I got this working: ```sh $ unzip $HOME/.m2/repository/com/google/api/grpc/proto-google-common-protos/1.14.0/proto-google-common-protos-1.14.0-sources.jar \ 'google/*' $ docker run --rm \ -v $(pwd)/out:/out \ -v $(pwd)/protos:/protos:ro \ -v $(pwd)/google:/google:ro \ pseudomuto/protoc-gen-doc \ --proto_path=. ``` Because `entrypoint.sh`...

I encountered it after changing the layout of `$STAGE`'s contents in a way I think caused the earlier `Remove-Item *.*` to match no files. I'm not clear on exactly which...

I wonder if this is possible with readline. If you open the file finder (`f`), which doesn't use readline, you can see that Escape already bails. If you compile without...

You may want to look at https://github.com/google/google-java-format/wiki/The-Rectangle-Rule. That design principle is a major factor in churn reduction around assignments by google-java-format, and conversely Prettier not using it (and by indirect...

For Bash ```rs impl Flag for Type { fn doc_choices(&self) -> &'static [&'static str] { &["$(rg --type-list | cut -d: -f1)"] } } ``` is functionally equivalent to the modification...