Hi, I would like to add some history management to the native readline lib. I mean features like: - setting history size - exporting and importing history to/from array - histcontrol: erasedups, maybe ignorespace and ignoredups - ability to switch adding to history and reading from history on or off
I have a couple of questions regarding how and if I should do it - does such feature have place in the core? - in order to save shifting history entries around memory with big histsize and erasedups should I implement a new data structure or reuse an existing one? - what functionality except the features listed above should I include? For example I thought of history "namespaces" but those would be trivial with export/import from arrays. Regards, OhJeez -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
