mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Add primitive printing support for Unix and Windows.
This commit is contained in:
parent
eb914881af
commit
2ca7862e97
5 changed files with 38 additions and 0 deletions
|
|
@ -17,6 +17,7 @@ windows_keydefs = \
|
|||
'<<open-new-window>>': ['<Control-n>'],
|
||||
'<<open-window-from-file>>': ['<Control-o>'],
|
||||
'<<plain-newline-and-indent>>': ['<Control-j>'],
|
||||
'<<print-window>>': ['<Control-p>'],
|
||||
'<<redo>>': ['<Control-y>'],
|
||||
'<<remove-selection>>': ['<Escape>'],
|
||||
'<<save-copy-of-window-as-file>>': ['<Alt-Shift-s>'],
|
||||
|
|
@ -46,6 +47,7 @@ unix_keydefs = \
|
|||
'<<open-new-window>>': ['<Control-x><Control-n>'],
|
||||
'<<open-window-from-file>>': ['<Control-x><Control-f>'],
|
||||
'<<plain-newline-and-indent>>': ['<Control-j>'],
|
||||
'<<print-window>>': ['<Control-x><Control-p>'],
|
||||
'<<redo>>': ['<Alt-z>', '<Meta-z>'],
|
||||
'<<save-copy-of-window-as-file>>': ['<Control-x><w>'],
|
||||
'<<save-window-as-file>>': ['<Control-x><Control-w>'],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue