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 1c68f9e commit 3ce3707
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 @@ -53,7 +53,7 @@ def test_shortcut_traitlets():
assert app.shortcut_next_tab == ("Ctrl+Alt+Right" if sys.platform == 'darwin' else "Ctrl+PgDown")
assert app.shortcut_rename_window == "Alt+R"
assert app.shortcut_rename_current_tab == "Ctrl+R"
assert app.shortcut_close == ("Ctrl+W" if sys.platform.startswith('linux') else "Ctrl+F4")
assert app.shortcut_close == ("Ctrl+F4" if sys.platform.startswith('win') else "Ctrl+W")


@pytest.mark.parametrize(
Expand Down

0 comments on commit 3ce3707

Please sign in to comment.