freebsd-dev/contrib/libreadline/NEWS

33 lines
1.3 KiB
Plaintext
Raw Normal View History

2006-03-27 22:47:12 +00:00
This is a terse description of the new features added to readline-5.1 since
the release of readline-5.0.
2004-10-18 07:02:42 +00:00
1. New Features in Readline
2006-03-27 22:47:12 +00:00
a. The key sequence sent by the keypad `delete' key is now automatically
bound to delete-char.
2004-10-18 07:02:42 +00:00
2006-03-27 22:47:12 +00:00
b. A negative argument to menu-complete now cycles backward through the
completion list.
2004-10-18 07:02:42 +00:00
2006-03-27 22:47:12 +00:00
c. A new bindable readline variable: bind-tty-special-chars. If non-zero,
readline will bind the terminal special characters to their readline
equivalents when it's called (on by default).
2004-10-18 07:02:42 +00:00
2006-03-27 22:47:12 +00:00
d. New bindable command: vi-rubout. Saves deleted text for possible
reinsertion, as with any vi-mode `text modification' command; `X' is bound
to this in vi command mode.
2004-10-18 07:02:42 +00:00
2006-03-27 22:47:12 +00:00
e. If the rl_completion_query_items is set to a value < 0, readline never
asks the user whether or not to view the possible completions.
2004-10-18 07:02:42 +00:00
2006-03-27 22:47:12 +00:00
f. New application-callable auxiliary function, rl_variable_value, returns
a string corresponding to a readline variable's value.
2004-10-18 07:02:42 +00:00
2006-03-27 22:47:12 +00:00
g. When parsing inputrc files and variable binding commands, the parser
strips trailing whitespace from values assigned to boolean variables
before checking them.
2004-10-18 07:02:42 +00:00
2006-03-27 22:47:12 +00:00
h. A new external application-controllable variable that allows the LINES
and COLUMNS environment variables to set the window size regardless of
what the kernel returns.