mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
further work on config system
This commit is contained in:
parent
4974575609
commit
82c6682bb7
2 changed files with 9 additions and 9 deletions
|
@ -37,9 +37,9 @@ menudefs = [
|
||||||
('_Undo', '<<undo>>'),
|
('_Undo', '<<undo>>'),
|
||||||
('_Redo', '<<redo>>'),
|
('_Redo', '<<redo>>'),
|
||||||
None,
|
None,
|
||||||
('Cu_t', '<<Cut>>'),
|
('Cu_t', '<<cut>>'),
|
||||||
('_Copy', '<<Copy>>'),
|
('_Copy', '<<copy>>'),
|
||||||
('_Paste', '<<Paste>>'),
|
('_Paste', '<<paste>>'),
|
||||||
('Select _All', '<<select-all>>'),
|
('Select _All', '<<select-all>>'),
|
||||||
None,
|
None,
|
||||||
('_Find...', '<<find>>'),
|
('_Find...', '<<find>>'),
|
||||||
|
@ -58,11 +58,11 @@ menudefs = [
|
||||||
('!_Debugger', '<<toggle-debugger>>'),
|
('!_Debugger', '<<toggle-debugger>>'),
|
||||||
('!_Auto-open stack viewer', '<<toggle-jit-stack-viewer>>' ),
|
('!_Auto-open stack viewer', '<<toggle-jit-stack-viewer>>' ),
|
||||||
]),
|
]),
|
||||||
# ('settings', [
|
('settings', [
|
||||||
# ('_Configure Idle...', '<<open-config-dialog>>'),
|
('_Configure Idle...', '<<open-config-dialog>>'),
|
||||||
# None,
|
None,
|
||||||
# ('Revert to _Default Settings', '<<revert-all-settings>>'),
|
('Revert to _Default Settings', '<<revert-all-settings>>'),
|
||||||
# ]),
|
]),
|
||||||
('help', [
|
('help', [
|
||||||
('_IDLE Help...', '<<help>>'),
|
('_IDLE Help...', '<<help>>'),
|
||||||
('Python _Documentation...', '<<python-docs>>'),
|
('Python _Documentation...', '<<python-docs>>'),
|
||||||
|
|
|
@ -233,7 +233,7 @@ class EditorWindow:
|
||||||
("edit", "_Edit"),
|
("edit", "_Edit"),
|
||||||
("format", "F_ormat"),
|
("format", "F_ormat"),
|
||||||
("run", "_Run"),
|
("run", "_Run"),
|
||||||
#("settings", "_Settings"),
|
("settings", "_Settings"),
|
||||||
("windows", "_Windows"),
|
("windows", "_Windows"),
|
||||||
("help", "_Help"),
|
("help", "_Help"),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue