Peter Harris

Results 31 comments of Peter Harris

I'm disinclined to release a new version of liner every time a 3rd party package sneezes. Fortunately, it appears that this is not "the only real solution" for @cosmos72 ....

Note to whomever implements this: You should probably prevent strings with newlines in `AppendHistory` to avoid it showing up as multiple entries in the history.

Sorry for the delay in responding. When I see someone update a branch after opening a pull request, I wait a couple of days to see if more updates are...

It looks like you've done a lot more work on this than I have (or ever will). What if, instead of pulling, I change my README to point at your...

> Hi Peter,really I don't know exatly how github work. Github works by people volunteering their time to maintain projects. I haven't used pyobd in years, so I no longer...

> I'm not (immediately) sure what the right fix would be. You've no doubt thought a lot more about these kinds of questions than I have—what do you think? I...

Liner doesn't draw the cursor, it is up to the Windows Console (or terminal emulator on other platforms) to draw the cursor. I use a program built with Liner on...

> Would forgetting to call Close() before exiting the process cause any such issues in a shell? Yes. You must call `Close()` or the tty will be left in an...

Usually when stdout is redirected, the user does not want a command prompt on stderr. I'm not likely to make that the default behaviour.

Sorry, you can't use `stderr` as input. It's output only. So your `dump-some-db | ./my-liner-tool | ./new.db` example can only work if the tool has a non-interactive mode. There may...