Skip to content

Commit

Permalink
Add ctrl + pageUp and pageDown for switching tabs (#1297)
Browse files Browse the repository at this point in the history
This makes it consistent with Files, Terminal and Web
  • Loading branch information
stan-janssen committed Mar 27, 2023
1 parent 00f3012 commit aec73bd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/MainWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,9 @@ namespace Scratch {
action_accelerators.set (ACTION_TOGGLE_TERMINAL, "<Control><Alt>t");
action_accelerators.set (ACTION_TOGGLE_OUTLINE, "<Alt>backslash");
action_accelerators.set (ACTION_NEXT_TAB, "<Control>Tab");
action_accelerators.set (ACTION_NEXT_TAB, "<Control>Page_Down");
action_accelerators.set (ACTION_PREVIOUS_TAB, "<Control><Shift>Tab");
action_accelerators.set (ACTION_PREVIOUS_TAB, "<Control>Page_Up");
action_accelerators.set (ACTION_CLEAR_LINES, "<Control>K"); //Geany
action_accelerators.set (ACTION_NEW_BRANCH + "::", "<Control>B");
action_accelerators.set (ACTION_HIDE_PROJECT_DOCS + "::", "<Control><Shift>h");
Expand Down

0 comments on commit aec73bd

Please sign in to comment.