diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-03-29 19:01:28 +0300 |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-03-29 19:01:28 +0300 |
commit | 67ac0792037349b01ab2193ea9a057ffc420239e (patch) | |
tree | 7c13e7544f1dbd9c379fb89f0aff780be6064497 /Lib/idlelib/configHandler.py | |
parent | 07cf1d8085e40840459df877ddaded7c539a6806 (diff) | |
download | cpython-git-67ac0792037349b01ab2193ea9a057ffc420239e.tar.gz |
Issue #14409: IDLE doesn't not execute commands from shell with default keybinding for <Return>.
Patch by Roger Serwy.
Diffstat (limited to 'Lib/idlelib/configHandler.py')
-rw-r--r-- | Lib/idlelib/configHandler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configHandler.py b/Lib/idlelib/configHandler.py index 73b8db5b23..da927260ee 100644 --- a/Lib/idlelib/configHandler.py +++ b/Lib/idlelib/configHandler.py @@ -595,7 +595,7 @@ class IdleConf: '<<replace>>': ['<Control-h>'], '<<goto-line>>': ['<Alt-g>'], '<<smart-backspace>>': ['<Key-BackSpace>'], - '<<newline-and-indent>>': ['<Key-Return> <Key-KP_Enter>'], + '<<newline-and-indent>>': ['<Key-Return>', '<Key-KP_Enter>'], '<<smart-indent>>': ['<Key-Tab>'], '<<indent-region>>': ['<Control-Key-bracketright>'], '<<dedent-region>>': ['<Control-Key-bracketleft>'], |