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 d87bc52 commit 8e1672e
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+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 == 'darwin' else "Ctrl+F4")
assert app.shortcut_close == ("Ctrl+W" if sys.platform.startswith('linux') else "Ctrl+F4")


@pytest.mark.parametrize(
Expand Down

0 comments on commit 8e1672e

Please sign in to comment.