Evan Laforge

Results 22 comments of Evan Laforge

What else do people use Show for? I know you can do deserialization with Read, but if there's no Read then I assume no one will have that expectation. I...

I just realized that since ProcessHandle is exposed in internals I can already get the PID. A function would just be a convenience.

Yeah, don't see why not. I had forgotten about this until now. So I just added a pull request so there's nothing left for me to remember to do.

Just as a data point to show that the low precision does in fact affect people, about a year ago in our company's internal codebase I discovered people passing test...

Looks like it's this one: https://github.com/haskell/cabal/issues/5278 However, it also looks like it's fixed at head by removing the custom build type, so we probably just need a hackage release. Meanwhile,...

@jwiegley can you or another maintainer do a hackage release? This should fix it for darwin without the need for manual workarounds. Or if there's a way to give me...

It looks like just the `f` is an older syntax for kind:f. Probably vim makes `x:y` stuff available to plugins. This should be easy to add, but to avoid trial...

BTW, fast-tags suppresses adjacent tags with the same name, so e.g. `data T = T` emits just one tag, not two. But that may not be appropriate for a type-oriented...

Here's what hasktags -x generates: ``` !_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/ !_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/ !_TAG_PROGRAM_NAME hasktags f Test.hs /^f x = 10$/;"...

Strange that atom would implement the hard one but not the easy one. I think historically /.../ syntax was added because it was less likely to be wrong when a...