update
[CleanReadLine.git] / README.md
index b2a9865..391e314 100644 (file)
--- a/README.md
+++ b/README.md
@@ -19,6 +19,11 @@ make
 When you want to use the library in your program you should compile with the
 `-l /usr/lib/libreadline.so` linker flag
 
+All functions try to resemble the original
+[readline](http://cnswww.cns.cwru.edu/php/chet/readline/readline.html) and 
+[history](http://cnswww.cns.cwru.edu/php/chet/readline/history.html) api
+functions as close as possible
+
 ###Changelog
 
 - 0.2 (2016-01-25)
@@ -30,11 +35,11 @@ When you want to use the library in your program you should compile with the
 
 ###Todo
 
+- Access to the history datastructure
+- Access to the current location
+- Complete history api implementation
 - Embed the readline library in the object files in such a way that no special
   compiler flag is needed.
-- Control over history, right now entries are added automatically to the
-  history when the boolean flag is on. It would be nice to be able to add
-  custom entries.
 - Control over tabcompletion, right now it completes on filenames.
 - Check possibilities for Windows/Mac