diff options
author | Bruce Yinhe <[email protected]> | 2014-10-06 14:53:15 +0200 |
---|---|---|
committer | Bruce Yinhe <[email protected]> | 2014-10-06 14:53:15 +0200 |
commit | a675467f2bba5c4e7fe643a46d3a48a3cf0b020a (patch) | |
tree | aef2b4ec88fbcc1c55439a904303e0a86631d54a /lib/kernel | |
parent | 9e48b1fd13d9b5adfbeeda3e9137c4e2b56c37e4 (diff) | |
parent | 81094cfd7b80a0cfe80f88c8fecb394744ceb90f (diff) | |
download | otp-a675467f2bba5c4e7fe643a46d3a48a3cf0b020a.tar.gz otp-a675467f2bba5c4e7fe643a46d3a48a3cf0b020a.tar.bz2 otp-a675467f2bba5c4e7fe643a46d3a48a3cf0b020a.zip |
Merge branch 'vinoski/edlin-ctrl-u' into maint
OTP-12224
* vinoski/edlin-ctrl-u:
Make shell ctrl-u save killed text correctly
Diffstat (limited to 'lib/kernel')
-rw-r--r-- | lib/kernel/test/interactive_shell_SUITE.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/kernel/test/interactive_shell_SUITE.erl b/lib/kernel/test/interactive_shell_SUITE.erl index a375adceea..7f6024f642 100644 --- a/lib/kernel/test/interactive_shell_SUITE.erl +++ b/lib/kernel/test/interactive_shell_SUITE.erl @@ -296,6 +296,7 @@ ctrl_keys(doc) -> ["Tests various control keys"]; ctrl_keys(_Conf) when is_list(_Conf) -> Cu=[$\^u], Cw=[$\^w], + Cy=[$\^y], Home=[27,$O,$H], End=[27,$O,$F], rtnode([{putline,""}, @@ -308,6 +309,8 @@ ctrl_keys(_Conf) when is_list(_Conf) -> {putline,"world\"."++Home++"\"hello "}, % test <HOME> {getline,"\"hello world\""}, {putline,"world"++Home++"\"hello "++End++"\"."}, % test <END> + {getline,"\"hello world\""}, + {putline,"\"hello world\""++Cu++Cy++"."}, {getline,"\"hello world\""}] ++wordLeft()++wordRight(),[]). |