Skip to content

Commit

Permalink
Add linux shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
jsbautista committed Nov 5, 2024
1 parent 8e1672e commit b1da48e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qtconsole/tests/test_qtconsoleapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def test_shortcut_traitlets():
assert app.shortcut_zoom_out == "Ctrl+-"
assert app.shortcut_reset_font_size == "Ctrl+0"
assert app.shortcut_interrupt_kernel == ("Meta+C" if sys.platform == 'darwin' else "Ctrl+C")
assert app.shortcut_restart_kernel == "Ctrl+."
assert app.shortcut_restart_kernel == ("Meta+." if sys.platform == 'darwin' else "Ctrl+.")
assert app.shortcut_minimize == "Ctrl+M"
assert app.shortcut_prev_tab == "Ctrl+PgUp"
assert app.shortcut_next_tab == "Ctrl+PgDown"
Expand Down

0 comments on commit b1da48e

Please sign in to comment.