From 1e760c0be3ed35874204114e7454509f740c0fe2 Mon Sep 17 00:00:00 2001 From: shyouhei Date: Wed, 22 Aug 2007 01:53:51 +0000 Subject: add tag v1_8_6_71 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_8_5_71@13189 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ruby_1_8_6/ext/readline/README | 62 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 ruby_1_8_6/ext/readline/README (limited to 'ruby_1_8_6/ext/readline/README') diff --git a/ruby_1_8_6/ext/readline/README b/ruby_1_8_6/ext/readline/README new file mode 100644 index 0000000000..9bbf325c99 --- /dev/null +++ b/ruby_1_8_6/ext/readline/README @@ -0,0 +1,62 @@ +Extension for GNU Readline Library + +Example: + + require "readline" + include Readline + + line = readline("Prompt> ", true) + +[Readline] + + + +readline(prompt, add_history=nil) + + Reads one line with line editing. The inputted line is added to the + history if add_history is true. + + + +completion_proc = proc + + Specifies a Proc object to determine completion behavior. It + should take input-string, and return an array of completion + candidates. + +completion_proc + + Returns the completion Proc object. + +completion_case_fold = bool + + Sets whether or not to ignore case on completion. + +completion_case_fold + + Returns true if completion ignores case. + +completion_append_character = char + + Specifies a character to be appended on completion. + Nothing will be appended if an empty string ("") or nil is + specified. + +completion_append_character + + Returns a string containing a character to be appended on + completion. The default is a space (" "). + +vi_editing_mode + + Specifies VI editing mode. + +emacs_editing_mode + + Specifies Emacs editing mode. + + + +HISTORY + +The history buffer. It behaves just like an array. -- cgit v1.2.3