| 1 | # IDLE reads several config files to determine user preferences. This
|
|---|
| 2 | # file is the default config file for general idle settings.
|
|---|
| 3 | #
|
|---|
| 4 | # When IDLE starts, it will look in
|
|---|
| 5 | # the following two sets of files, in order:
|
|---|
| 6 | #
|
|---|
| 7 | # default configuration
|
|---|
| 8 | # ---------------------
|
|---|
| 9 | # config-main.def the default general config file
|
|---|
| 10 | # config-extensions.def the default extension config file
|
|---|
| 11 | # config-highlight.def the default highlighting config file
|
|---|
| 12 | # config-keys.def the default keybinding config file
|
|---|
| 13 | #
|
|---|
| 14 | # user configuration
|
|---|
| 15 | # -------------------
|
|---|
| 16 | # ~/.idlerc/config-main.cfg the user general config file
|
|---|
| 17 | # ~/.idlerc/config-extensions.cfg the user extension config file
|
|---|
| 18 | # ~/.idlerc/config-highlight.cfg the user highlighting config file
|
|---|
| 19 | # ~/.idlerc/config-keys.cfg the user keybinding config file
|
|---|
| 20 | #
|
|---|
| 21 | # On Windows2000 and Windows XP the .idlerc directory is at
|
|---|
| 22 | # Documents and Settings\<username>\.idlerc
|
|---|
| 23 | #
|
|---|
| 24 | # On Windows98 it is at c:\.idlerc
|
|---|
| 25 | #
|
|---|
| 26 | # Any options the user saves through the config dialog will be saved to
|
|---|
|
|---|