Patrick Haun

Results 33 comments of Patrick Haun

A sorry I should no reply to threads after waking up.

@LordMZTE is the workaround working for you? Or are you planning on working on the issue yourself? Or should we implement something if we decide what to do and have...

I stumbled on this a while ago. https://github.com/brocode/fw/blob/master/src/app/mod.rs#L164 the issue is probably the `index` here. I didn't have the time to analyze this further.

The library generates the help and the parser. So either we are doing something wrong using it or the lib has bug.

Array selection is something that needs improvement. In general the approach to select specific fields needs a rework. I don't have the time at the moment but I'll look into...

``` 09:25:20 fblog is 📦 v4.2.0 via 🦀 v1.64.0 on  master » cat sample_nested.json.log {"timestamp":"2017-07-06T15:21:16.378+00:00", "log": {"level": "info"}, "status": {"a": 100, "b": "te\nst", "c": true}, "message": "test"} {"timestamp":"2017-07-06T15:21:16.378+00:00", "log":...

It is not perfect but is now supports both use cases. `-a status` prints the entire status object and `-a 'status > d[1] > a'` selects something inside an array.

I would do this with clap once this is done: https://github.com/clap-rs/clap/issues/1232

```kotlin data class Test( val x: Long, val y: Long, ) fun main(args: List) { // TEST used() Test( x =1, y =2, ) } fun unused() { } fun...

I guess this is because the recommended selection color by the dracula palette is already used by the current line. But the brighter color for selection does not work well...