This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: IDLE bug - changing shortcuts - Shift-Tab broken!
Type: Stage:
Components: IDLE Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: kbk Nosy List: bld_d16, kbk
Priority: high Keywords:

Created on 2005-04-08 11:54 by bld_d16, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
IDLE bug.log bld_d16, 2005-04-08 11:54 log from IDLE running
Messages (3)
msg24965 - (view) Author: Przemysław Gocyła (bld_d16) Date: 2005-04-08 11:54
On Python 2.4.1 on WinXP I have changed keyboard 
shortcut settings for indent/unindent.
New shorcut was Tab/Shift+Tab.

When I did it IDLE hanged up and I could not to launch it 
again.

I have tried everything. Uninstall whole Python and then 
reinstall (tried both version 2.3 and 2.4).
It just looks like from the change of shortcuts IDLE don't 
works.

I tried to:
  import idlelib.PyShell
  idlelib.PyShell.main()
and result with bug are in attachment

Where is the information about IDLE shortcuts keeped ?
Why IDLE remember this even after reinstall ?
How to fix it up?

Best regards,
Przemek
msg24966 - (view) Author: Kurt B. Kaiser (kbk) * (Python committer) Date: 2005-04-14 20:58
Logged In: YES 
user_id=149084

Your user keyset config file on Windows is at
Documents and Settings\<YourUserName>\.idlerc\config-keys.cfg
This file doesn't get removed when Python is uninstalled.

Open this file with a text editor and find the <Key-tab> entry.
Change it to <Key-Tab>

This is a bug in IDLE.  (normally people don't try to re-assign
the tab key, so it got missed)
msg24967 - (view) Author: Kurt B. Kaiser (kbk) * (Python committer) Date: 2006-07-18 04:05
Logged In: YES 
user_id=149084

rev 50695
History
Date User Action Args
2022-04-11 14:56:10adminsetgithub: 41828
2005-04-08 11:54:47bld_d16create