Mykola Orliuk

Results 36 comments of Mykola Orliuk

@ryanobjc , if you'll write `$1,42` I'm pretty sure that LedgerCLI will treat it as one dollar and 42 cents. From what I can see LedgerCLI have heuristic which probably...

It would be really cool if those two constants will be available for override in config. In my case I need `wl-copy` on Wayland.

Related code seems to be: https://github.com/ciao-lang/ciao/blob/f6d7b1539a9a783cf26e2f54feda92ec6d725da9/core/library/persdb/datadir.pl#L64-L67 https://github.com/ciao-lang/ciao/blob/f6d7b1539a9a783cf26e2f54feda92ec6d725da9/builder/src/config_common.pl#L82-L92 With `core` bundle being installed into system location and not allowed for write - these setup is not going to fully work. Shouldn't...

> > As a first step, we'd need a way to get the correct character widths – is there a nice, well-maintained Haskell library for that? You can see a...

> I think this is an intriguing idea – I've run into [similar issues](https://github.com/dhall-lang/dhall-haskell/pull/1556#discussion_r347725126) in `dhall` where many `Pretty` instances currently look like > > ```haskell > instance Pretty X...

> What are you referring to with "that"? Sorry. I'm referring to this: > ```haskell > instance Pretty X where > pretty = unAnnotate . prettyX > ``` I don't...

> I think the main value of that class is probably in the instances that `prettyprinter` provides for the basic types. In this case it is not clear why it...

> I see the point, but it’s a huge breaking change for a very specific use case that I don’t think flies without a significant, popular use case. What is...

Mock-up of how it could look with `Void`: ```haskell data Doc ann where Empty :: Doc Void Text :: String -> Doc Void Unannotated :: Doc Void -> Doc ann...

Maybe it is possible to track ignores in `jj` too. If you switch away from commit at which you had something ignored but not at new one - that information...