diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2003-08-09 01:51:28 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2003-08-09 01:51:28 (GMT) |
commit | 3f42a6d26778d764018ccaa31c75bb104d921ab7 (patch) | |
tree | 620d1cb9cab35f9f2b9262b2cb12e44de02a2667 | |
parent | 0eec08794cae1aad449a95ff3aa9c8bbbc3fad9b (diff) | |
download | cpython-3f42a6d26778d764018ccaa31c75bb104d921ab7.zip cpython-3f42a6d26778d764018ccaa31c75bb104d921ab7.tar.gz cpython-3f42a6d26778d764018ccaa31c75bb104d921ab7.tar.bz2 |
IDLEfork Bug 782759
backported to 23-maint
-rw-r--r-- | Lib/idlelib/config-main.def | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/Lib/idlelib/config-main.def b/Lib/idlelib/config-main.def index 4b545d4..e06234b 100644 --- a/Lib/idlelib/config-main.def +++ b/Lib/idlelib/config-main.def @@ -13,10 +13,15 @@ # # user configuration # ------------------- -# ~/.idlerc/idle-main.cfg the user general config file -# ~/.idlerc/idle-extensions.cfg the user extension config file -# ~/.idlerc/idle-highlight.cfg the user highlighting config file -# ~/.idlerc/idle-keys.cfg the user keybinding config file +# ~/.idlerc/config-main.cfg the user general config file +# ~/.idlerc/config-extensions.cfg the user extension config file +# ~/.idlerc/config-highlight.cfg the user highlighting config file +# ~/.idlerc/config-keys.cfg the user keybinding config file +# +# On Windows2000 and Windows XP the .idlerc directory is at +# Documents and Settings\<username>\.idlerc +# +# On Windows98 it is at c:\.idlerc # # Any options the user saves through the config dialog will be saved to # the relevant user config file. Reverting any general setting to the |