Robin Munn
Robin Munn
This issue probably isn't FParsec's fault *per se*, but it's something that FParsec will probably need to work around since I doubt the root cause of the issue will be...
Now that [Java](https://docs.oracle.com/javase/8/docs/technotes/guides/language/underscores-literals.html) and [F#](https://github.com/fsharp/fslang-design/blob/master/FSharp-4.1/FS-1005-underscores-in-numeric-literals.md) allow underscores in numeric literals, and some configuration file syntaxes like [TOML](https://github.com/toml-lang/toml/#integer) do as well, it would be nice if the `numberLiteral` parser had an...
[This StackOverflow question](https://stackoverflow.com/questions/45653927/fparsec-backtracking-sepby) is what led to this feature request. I don't know the actual use case, but the example use case in that question is a parser setup similar...
While the automatic coloring of indent guides looks great in gvim, it looks really ugly running vim on a 256-color terminal. Compare and contrast, for example, these two screenshots: ...
This is https://github.com/commandlineparser/commandline/commit/b7102d89a90acd2d9356637ead5a0a64b58b131a with the Legacy name renamed to Classic so as not to suggest that it's obsolete or going away anytime soon. See https://github.com/commandlineparser/commandline/pull/684#issuecomment-681783784 for the rationale.
More unit tests to verify various combinations of a `--` arg in the middle of a sequence. These are a few tests that I meant to include in #678 but...
Closes #6892. This PR adds an `interleave` filter operator that will interleave multiple lists together "zipper-style", e.g. taking `A B C` and `1 2 3` and producing `A 1 B...
**Is your feature request related to a problem? Please describe.** I recently wanted to be able to merge two lists together "zipper-style", e.g. taking `A B C` and `1 2...
This fixes the `TypeError: can't define array index property past the end of an array with non-writable length` error from #6871. The cause of this problem is that when I...
**Is your feature request related to a problem? Please describe.** While coming up with examples for #6892 (which suggests a new `interleave` filter operator), I had the idea that one...