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
a87bd7fa
Commit
a87bd7fa
authored
Sep 14, 2002
by
Kurt B. Kaiser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MERGE DS_RPC_BRANCH into MAIN
configHandler.py AutoIndent merged 21Jul
parent
52a647a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
Lib/idlelib/configHandler.py
Lib/idlelib/configHandler.py
+13
-1
No files found.
Lib/idlelib/configHandler.py
View file @
a87bd7fa
...
...
@@ -521,7 +521,19 @@ class IdleConf:
'<<find-selection>>'
:
[
'<Control-F3>'
],
'<<find>>'
:
[
'<Control-f>'
],
'<<replace>>'
:
[
'<Control-h>'
],
'<<goto-line>>'
:
[
'<Alt-g>'
]
}
'<<goto-line>>'
:
[
'<Alt-g>'
],
'<<smart-backspace>>'
:
[
'<Key-BackSpace>'
],
'<<newline-and-indent>>'
:
[
'<Key-Return> <Key-KP_Enter>'
],
'<<smart-indent>>'
:
[
'<Key-Tab>'
],
'<<indent-region>>'
:
[
'<Control-Key-bracketright>'
],
'<<dedent-region>>'
:
[
'<Control-Key-bracketleft>'
],
'<<comment-region>>'
:
[
'<Alt-Key-3>'
],
'<<uncomment-region>>'
:
[
'<Alt-Key-4>'
],
'<<tabify-region>>'
:
[
'<Alt-Key-5>'
],
'<<untabify-region>>'
:
[
'<Alt-Key-6>'
],
'<<toggle-tabs>>'
:
[
'<Alt-Key-t>'
],
'<<change-indentwidth>>'
:
[
'<Alt-Key-u>'
]
}
if
keySetName
:
for
event
in
keyBindings
.
keys
():
binding
=
self
.
GetKeyBinding
(
keySetName
,
event
)
...
...
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