Roland Walker
Roland Walker
Hi! I can see the flicker in your movie, super annoying. Same thing does not happen in iTerm2. It is probably a prompt_toolkit issue rather than a mycli issue per...
@phy1729 Thank you for the review! The motivation was that I have been writing a lot of Lisp at the command-line, using tools like [babashka](https://github.com/borkdude/babashka), simple example ``` ls |...
That sounds good, will try. _Ideally_, we'd form that most-common list dynamically from the user's own history.
https://github.com/laixintao/iredis/blob/e27ea4a3025fd3b49ba1bb2bce1deb2eecdd8cb5/iredis/redis_grammar.py#L633
I got as far as the following, which passes the included todos, but fails many others. ```patch diff --git a/src/diff.c b/src/diff.c index 583f1e0e0..29e002691 100644 --- a/src/diff.c +++ b/src/diff.c @@ -624,16...
Now that tig is the process-group leader this PR is more focused and can be evaluated on its own. I suspect that you won't like the added complexity and the...
Here is approximately what would guarantee tig its own process group and ownership of the tty: ```C FILE *tty = fopen("/dev/tty", "r+"); int tty_fd = tty ? fileno(tty) : STDIN_FILENO;...
@jonas did you ever look at this one? I assume that you like the idea of a separate script per #301, but am not sure you like the idea of...
Did you just beat me to the rebase?
More than happy to spin out the process-group-leader patch. I use tig every day and owe you no end of thanks. Maybe `watchman` can work without a complex script. I...