tonerdo / readline

A Pure C# GNU-Readline like library for .NET/.NET Core
MIT License
810 stars 77 forks source link

Add option to disable history #24

Closed psylenced closed 7 years ago

psylenced commented 7 years ago

History should be able to be disabled on a global level:

ReadLine.DisableHistory = true;

And overridden on a call level:

ReadLine.Read("", "", true); ReadLine.Read("", "", false);

tonerdo commented 7 years ago

@chris-gh wanna take a stab at this?