Skip to content

Commit 99dfc8e

Browse files
authored
Merge pull request #192 from KiKaraage/main
Keyboard Shortcuts & Translate
2 parents 3379981 + be8ac8e commit 99dfc8e

File tree

11 files changed

+324
-0
lines changed

11 files changed

+324
-0
lines changed
Lines changed: 191 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,191 @@
1+
---
2+
title: Keyboard Shortcuts
3+
description: Enhance your Zen experience with customizable keybinds
4+
---
5+
6+
import KeyboardShortcut from '@/components/KeyboardShortcut';
7+
8+
Zen Browser supported lots of keyboard shortcuts to help you do common tasks quicker. Access `Settings" /> > `Keyboard Shortcuts" /> and edit the available shortcuts to suit your workflow even more!
9+
10+
### Change or rebind keyboard shortcuts in Zen
11+
12+
<div align="center">
13+
<video width="100%" loop autoPlay>
14+
<source src="/assets/user-manual/shortcuts/edit-shortcut.mp4" />
15+
Your browser does not support the video tag.
16+
</video>
17+
</div>
18+
19+
- In Keyboard Shortcuts setting page, to change or rebind shortcut of a feature, click the text field beside it, press your shortcuts, and press Esc to save your new shortcut.
20+
- The text field will show a dark green outline quickly when the new shortcut is succesfully assigned and saved.
21+
- The text field will show a red outline if the new shortcut you assign is already taken as default shortcut for other feature in Zen. Below the field, a *Conflict with another shortcut* warning will be shown. If you encounter this, you can try assign another shortcut, or press Backspace to clear the shortcut field. You can also clear the shortcut field of a feature you don't need, before assigning it as a new shortcut for other features.
22+
- Some Zen features might not have conflict when its original shortcut got reassigned for other features, but when the shortcut is called, it will resort to do the original feature. You can check the Keyboard Settings if the shortcut you're assigning is already set for other feature, and try assign other shortcut to make it work.
23+
- Not all features are available in the Keyboard Shortcuts settings, especially alternative shortcuts derived from Firefox ([Check default Firefox shortcut lists](https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly)). This might result in failure when applying or accessing the feature using a custom shortcut you assigned. If a Firefox shortcut is not available in the Keyboard Shortcuts settings, you won't be able to use it as a custom shortcut yet. Kindly report it to [Zen Github Issues page](https://github.com/zen-browser/desktop/issues) first!
24+
25+
26+
## List of editable keyboard shortcuts in Zen
27+
28+
### Compact Mode
29+
30+
| **Action** | **Shortcut** |
31+
| ----------------------- | ---------------------------------------------- |
32+
| Toggle Floating Toolbar | <KeyboardShortcut shortcut="Alt + Ctrl + T" /> |
33+
| Toggle Floating Sidebar | <KeyboardShortcut shortcut="Alt + Ctrl + S" /> |
34+
| Toggle Compact Mode | <KeyboardShortcut shortcut="Alt + Ctrl + C" /> |
35+
36+
### Workspaces
37+
38+
| **Action** | **Shortcut** |
39+
| -------------------------- | ---------------------------------------------- |
40+
| Backward Workspace | <KeyboardShortcut shortcut="Alt + Ctrl + Q" /> |
41+
| Forward Workspace | <KeyboardShortcut shortcut="Alt + Ctrl + E" /> |
42+
| Switch to Workspace (1-10) | Not set by default |
43+
44+
You can assign custom keyboard shortcuts to switch into up to 10 workspaces.
45+
46+
### Split View
47+
48+
The "Toggle Split View" shortcuts currently only applicable when selecting multiple tabs in tab sidebar, and doesn't worked when used inside a split view.
49+
50+
| **Action** | **Shortcut** |
51+
| ------------------------------ | ---------------------------------------------- |
52+
| Close Split View (Unsplit All) | <KeyboardShortcut shortcut="Alt + Ctrl + U" /> |
53+
| Toggle Split View Horizontal | <KeyboardShortcut shortcut="Alt + Ctrl + H" /> |
54+
| Toggle Split View Vertical | <KeyboardShortcut shortcut="Alt + Ctrl + V" /> |
55+
| Toggle Split View Grid | <KeyboardShortcut shortcut="Alt + Ctrl + G" /> |
56+
57+
### Window & Tab Management
58+
59+
| **Action** | **Shortcut** |
60+
| ----------------------- | ------------------------------------------------ |
61+
| New Window | <KeyboardShortcut shortcut="Alt + Ctrl + U" /> |
62+
| New Tab | <KeyboardShortcut shortcut="Ctrl + T" /> |
63+
| Close Tab | <KeyboardShortcut shortcut="Ctrl + W" /> |
64+
| Close Window | <KeyboardShortcut shortcut="Shift + Ctrl + W" /> |
65+
| Quit Application | <KeyboardShortcut shortcut="Ctrl + Q" /> |
66+
| Restore Last Closed Tab | <KeyboardShortcut shortcut="Shift + Ctrl + T" /> |
67+
| Undo Close Window | <KeyboardShortcut shortcut="Shift + Ctrl + N" /> |
68+
| Select tab #1 - #8 ^ | <KeyboardShortcut shortcut="Alt + 1/2/.../8" /> |
69+
| Select last tab | <KeyboardShortcut shortcut="Alt + 9" /> |
70+
71+
- By default, you can **switch to next tab** using the <KeyboardShortcut shortcut="Ctrl + Tab" /> shortcut and **switch to previous tab** using the <KeyboardShortcut shortcut="Ctrl + Shift + Tab" /> shortcut.
72+
- When you're in Compact Mode and switching tabs using <KeyboardShortcut shortcut="Ctrl + Tab" /> or <KeyboardShortcut shortcut="Ctrl + Shift + Tab" />, you can peek into the tab you're switching in by enabling the **"Briefly make the toolbar popup when switching or opening new tabs in compact mode"** option in `Settings` > `Look and Feel` > `Theme Settings`.
73+
- Pressing <KeyboardShortcut shortcut="Ctrl + Tab" /> when you're in the last tab will switch you to the first available tab (Essentials first, then pinned tabs, and lastly, regular tabs).
74+
- ^ Tab numbers listed for these keyboard shortcuts includes Essentials and pinned tabs. Example: If you have three Essentials, four pinned tabs, and five regular tabs:
75+
- <KeyboardShortcut shortcut="Alt + 1" /> until <KeyboardShortcut shortcut="Alt + 3" /> will switch you to your Essentials,
76+
- <KeyboardShortcut shortcut="Alt + 4" /> until <KeyboardShortcut shortcut="Alt + 7" /> will switch you to your pinned tabs,
77+
- <KeyboardShortcut shortcut="Alt + 8" /> will switch you to your first regular tab,
78+
- <KeyboardShortcut shortcut="Alt + 9" /> will switch you to your last tab (12th).
79+
- Zen can also let you cycle through recently used tabs, instead of cycling through all of your tabs. Enable it by go to `Settings` > `General` > `Tabs` and check the `Ctrl + Tab cycles through tabs in recently used order`. A popup containing up to 7 recently used tabs will show up when you press <KeyboardShortcut shortcut="Ctrl + Tab" />.
80+
81+
### Navigation
82+
83+
| **Action** | **Shortcut** |
84+
| ------------------------------------ | ------------------------------------------------ |
85+
| Go Back | <KeyboardShortcut shortcut="Alt + ←" /> |
86+
| Go Forward | <KeyboardShortcut shortcut="Alt + →" /> |
87+
| Navigate Back (Alternative) | <KeyboardShortcut shortcut="Ctrl + [" /> |
88+
| Navigate Forward (Alternative) | <KeyboardShortcut shortcut="Ctrl + ]" /> |
89+
| Go Home | <KeyboardShortcut shortcut="Alt + Home" /> |
90+
| Reload Page | <KeyboardShortcut shortcut="Ctrl + R" /> |
91+
| Reload Page (Skip Current Cache) | <KeyboardShortcut shortcut="Shift + Ctrl + R" /> |
92+
| Go to History (Open History Sidebar) | <KeyboardShortcut shortcut="Ctrl + H" /> |
93+
| Open Private Browsing Window | <KeyboardShortcut shortcut="Shift + Ctrl + P" /> |
94+
95+
### Search & Find
96+
97+
| **Action** | **Shortcut** |
98+
| --------------------------------------- | ------------------------------------------------ |
99+
| Focus Search ^ | <KeyboardShortcut shortcut="Ctrl + K" /> |
100+
| Focus Search ^ (Alternative) | <KeyboardShortcut shortcut="Ctrl + J" /> |
101+
| Find on Page | <KeyboardShortcut shortcut="Ctrl + F" /> |
102+
| Find Again (Jump to Next Result) | <KeyboardShortcut shortcut="Ctrl + G" /> |
103+
| Find Previous (Jump to Previous Result) | <KeyboardShortcut shortcut="Shift + Ctrl + G" /> |
104+
105+
^ Focus Search shortcut will open your URL bar, shift focus and enable Search mode using your default search engine.
106+
107+
### Page Operations
108+
109+
| **Action** | **Shortcut** |
110+
| --------------------------------------- | ------------------------------------------------ |
111+
| Open Location (Current link in URL Bar) | <KeyboardShortcut shortcut="Ctrl + L" /> |
112+
| Open Location (Alternative) | <KeyboardShortcut shortcut="Alt + D" /> |
113+
| Save Page | <KeyboardShortcut shortcut="Ctrl + S" /> |
114+
| Print Page | <KeyboardShortcut shortcut="Ctrl + P" /> |
115+
| Toggle Reader Mode | <KeyboardShortcut shortcut="Alt + Ctrl + R" /> |
116+
| Toggle Picture-in-Picture | <KeyboardShortcut shortcut="Shift + Ctrl + ]" /> |
117+
| View Page Source | <KeyboardShortcut shortcut="Ctrl + U" /> |
118+
| View Page Info | <KeyboardShortcut shortcut="Ctrl + [" /> |
119+
120+
### History & Bookmarks
121+
122+
| **Action** | **Shortcut** |
123+
| -------------------------------- | ------------------------------------------------ |
124+
| Show All History | <KeyboardShortcut shortcut="Shift + Ctrl + H" /> |
125+
| Bookmark This Page | <KeyboardShortcut shortcut="Ctrl + D" /> |
126+
| Bookmark This Page (Alternative) | <KeyboardShortcut shortcut="Shift + Ctrl + D" /> |
127+
| Show Bookmarks Library | <KeyboardShortcut shortcut="Shift + Ctrl + O" /> |
128+
129+
### Media & Display
130+
131+
| **Action** | **Shortcut** |
132+
| --------------------- | ------------------------------------------------ |
133+
| Toggle Mute | <KeyboardShortcut shortcut="Ctrl + M" /> |
134+
| Zoom Out | <KeyboardShortcut shortcut="Ctrl + -" /> |
135+
| Zoom In | <KeyboardShortcut shortcut="Ctrl + +" /> |
136+
| Reset Zoom Level | <KeyboardShortcut shortcut="Ctrl + 0" /> |
137+
| Switch Text Direction | <KeyboardShortcut shortcut="Shift + Ctrl + X" /> |
138+
| Take Screenshot | <KeyboardShortcut shortcut="Shift + Ctrl + S" /> |
139+
140+
### Developer Tools
141+
142+
| **Action** | **Shortcut** |
143+
| ----------------------------- | ------------------------------------------------------ |
144+
| Toggle DevTools | <KeyboardShortcut shortcut="Shift + Ctrl + I" /> |
145+
| Toggle Browser Toolbox | <KeyboardShortcut shortcut="Alt + Shift + Ctrl + I" /> |
146+
| Toggle Browser Console | <KeyboardShortcut shortcut="Shift + Ctrl + J" /> |
147+
| Toggle Responsive Design Mode | <KeyboardShortcut shortcut="Shift + Ctrl + M" /> |
148+
| Toggle Inspector | <KeyboardShortcut shortcut="Shift + Ctrl + L" /> |
149+
| Toggle Web Console | <KeyboardShortcut shortcut="Shift + Ctrl + K" /> |
150+
| Toggle JavaScript Debugger | <KeyboardShortcut shortcut="Shift + Ctrl + Z" /> |
151+
| Toggle Network Monitor | <KeyboardShortcut shortcut="Shift + Ctrl + E" /> |
152+
| Toggle Style Editor | <KeyboardShortcut shortcut="Shift + F7" /> |
153+
| Toggle Performance | <KeyboardShortcut shortcut="Shift + F5" /> |
154+
| Toggle Storage | <KeyboardShortcut shortcut="Shift + F9" /> |
155+
| Toggle DOM | <KeyboardShortcut shortcut="Shift + Ctrl + W" /> |
156+
| Toggle Accessibility | <KeyboardShortcut shortcut="Shift + F12" /> |
157+
158+
### Zen Features
159+
160+
| **Action** | **Shortcut** |
161+
| ------------------------------ | ------------------------------------------------------ |
162+
| Copy Current URL as Markdown | <KeyboardShortcut shortcut="Alt + Shift + Ctrl + C" /> |
163+
| Copy Current URL | <KeyboardShortcut shortcut="Shift + Ctrl + C" /> |
164+
| Toggle Sidebar Width | <KeyboardShortcut shortcut="Alt + B" /> |
165+
| Reset Pinned Tab to Pinned URL | Not set by default |
166+
167+
### Other Features
168+
169+
| **Action** | **Shortcut** |
170+
| -------------------------- | ----------------------------------------------------- |
171+
| Open Downloads | <KeyboardShortcut shortcut="Shift + Ctrl + Y" /> |
172+
| Open Add-ons | <KeyboardShortcut shortcut="Shift + Ctrl + A" /> |
173+
| Open File | <KeyboardShortcut shortcut="Ctrl + O" /> |
174+
| Delete Key | <KeyboardShortcut shortcut="Delete" /> |
175+
| Enter Full Screen | <KeyboardShortcut shortcut="F11" /> |
176+
| Exit Full Screen | <KeyboardShortcut shortcut="F11" /> |
177+
| About Processes | <KeyboardShortcut shortcut="Shift + Escape" /> |
178+
| Show Bookmarks Sidebar | <KeyboardShortcut shortcut="Ctrl + B" /> |
179+
| Show Bookmarks Toolbar | <KeyboardShortcut shortcut="Shift + Ctrl + B" /> |
180+
| Stop Loading | <KeyboardShortcut shortcut="Escape" /> |
181+
| Toggle AI Chatbot Sidebar^ | <KeyboardShortcut shortcut="Alt + Ctrl + X" /> |
182+
| Toggle Firefox Sidebar | <KeyboardShortcut shortcut="Alt + Ctrl + Z" /> |
183+
| Show All Tabs | <KeyboardShortcut shortcut="Shift + Ctrl + Tab" /> |
184+
| Clear Browsing Data | <KeyboardShortcut shortcut="Shift + Ctrl + Delete" /> |
185+
| WR Capture Command | <KeyboardShortcut shortcut="Ctrl + #" /> |
186+
| Toggle WR Capture Sequence | <KeyboardShortcut shortcut="Ctrl + ^" /> |
187+
188+
---
189+
190+
Read more about default keyboard shortcuts in Firefox:
191+
[Keyboard shortcuts - Perform common Firefox tasks quickly | Firefox Help](https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly)

0 commit comments

Comments
 (0)