-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added the ability to process in the background #33
base: master
Are you sure you want to change the base?
Conversation
argument, which can be used to preload the buffer.
I see the CI is failing with "The name 'Thread' does not exist in the current context". This is certainly because I added "using System.Threading" but I'm not clueful enough about C# build stuff to know the right answer. (I'm building by hand with mcs because I don't know what I'm doing. :) If the fix is just to add a |
@erkyrath you could always build it with .NET Core :) |
Blank lines and duplicate lines are no longer put into history. (That is, a line is not added if it is blank or matches the most recent history entry.) A partial (interrupted) input is also not added.
I needed to be able to periodically check stuff in the background and (if necessary) interrupt the read, print, and restart the read.
This PR supports that.