mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
99ae768645
even if readline() interrupted. * ext/readline/readline.c: returned string need to be tainted. * ext/readline/readline.c: fixed memory leak. * ext/readline/readline.c: allow negative index. * ext/readline/readline.c: added Readline::HISTORY.size same as Readline::HISTORY.length * ext/readline/readline.c: allow conditional parsing of the ~/.inputrc file by `$if Ruby'. * ext/readline/extconf.rb: check whether the libreadline has the variable `rl_completion_append_character' (this feature was implemented from GNU readline 2.1). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1735 b2dd03c8-39d4-4d8f-98ff-823fe69b080e |
||
---|---|---|
.. | ||
.cvsignore | ||
depend | ||
extconf.rb | ||
MANIFEST | ||
readline.c | ||
README | ||
README.ja |
Extension for GNU Readline Library Example: require "readline" include Readline line = readline("Prompt> ", true) [Readline] <module function> readline(prompt, add_history=nil) Reads one line with line editing. The inputted line is added to the history if add_history is true. <class methods> 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. <class constants> HISTORY The history buffer. It behaves just like an array.