Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0c9b6173
Commit
0c9b6173
authored
Sep 14, 2002
by
Kurt B. Kaiser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bindings.py
AutoIndent merged 21Jul cleanup and remove references to config backend 06Aug
parent
dcfd825c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
Lib/idlelib/Bindings.py
Lib/idlelib/Bindings.py
+10
-8
No files found.
Lib/idlelib/Bindings.py
View file @
0c9b6173
...
...
@@ -5,16 +5,8 @@
# skipped by the code here. This makes it possible to define the
# Debug menu here, which is only present in the PythonShell window.
# changes by dscherer@cmu.edu:
# - Python shell moved to 'Run' menu
# - "Help" renamed to "IDLE Help" to distinguish from Python help.
# The distinction between the environment and the language is dim
# or nonexistent in a novice's mind.
# - Silly advice added
import
sys
import
string
#from keydefs import *
from
configHandler
import
idleConf
menudefs
=
[
...
...
@@ -51,6 +43,16 @@ menudefs = [
(
'R_eplace...'
,
'<<replace>>'
),
(
'Go to _line'
,
'<<goto-line>>'
),
]),
(
'format'
,
[
(
'_Indent region'
,
'<<indent-region>>'
),
(
'_Dedent region'
,
'<<dedent-region>>'
),
(
'Comment _out region'
,
'<<comment-region>>'
),
(
'U_ncomment region'
,
'<<uncomment-region>>'
),
(
'Tabify region'
,
'<<tabify-region>>'
),
(
'Untabify region'
,
'<<untabify-region>>'
),
(
'Toggle tabs'
,
'<<toggle-tabs>>'
),
(
'New indent width'
,
'<<change-indentwidth>>'
),
]),
(
'run'
,[
(
'Python shell'
,
'<<open-python-shell>>'
),
]),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment