mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-03-13 15:36:42 +08:00
Made sure alternate command line shortcut is visible (#1883) by UnrealApex
* Renamed command line setting timer-progress bar * Made ctrl+shift+p shortcut visible to the user
This commit is contained in:
parent
f97893a736
commit
971afec8be
3 changed files with 10 additions and 10 deletions
|
@ -1149,11 +1149,11 @@ export function setQuickTabMode(mode, nosave) {
|
|||
$("#restartTestButton").css("opacity", 1);
|
||||
$("#bottom .keyTips")
|
||||
.html(`<key>tab</key> and <key>enter</key> / <key>space</key> - restart test<br>
|
||||
<key>esc</key> - command line`);
|
||||
<key>ctrl/cmd</key>+<key>shift</key>+<key>p</key> or <key>esc</key> - command line`);
|
||||
} else {
|
||||
$("#restartTestButton").addClass("hidden");
|
||||
$("#bottom .keyTips").html(`<key>tab</key> - restart test<br>
|
||||
<key>esc</key> - command line`);
|
||||
<key>ctrl/cmd</key>+<key>shift</key>+<key>p</key> or <key>esc</key> - command line`);
|
||||
}
|
||||
if (!nosave) saveToLocalStorage();
|
||||
}
|
||||
|
@ -1165,11 +1165,11 @@ export function toggleQuickTabMode() {
|
|||
$("#restartTestButton").css("opacity", 1);
|
||||
$("#bottom .keyTips")
|
||||
.html(`<key>tab</key> and <key>enter</key> / <key>space</key> - restart test<br>
|
||||
<key>esc</key> - command line`);
|
||||
<key>ctrl/cmd</key>+<key>shift</key>+<key>p</key> or <key>esc</key> - command line`);
|
||||
} else {
|
||||
$("#restartTestButton").addClass("hidden");
|
||||
$("#bottom .keyTips").html(`<key>tab</key> - restart test<br>
|
||||
<key>esc</key> - command line`);
|
||||
<key>ctrl/cmd</key>+<key>shift</key>+<key>p</key> or <key>esc</key> - command line`);
|
||||
}
|
||||
saveToLocalStorage();
|
||||
}
|
||||
|
|
|
@ -39,7 +39,7 @@ export function updateKeytips() {
|
|||
)`);
|
||||
$("#bottom .keyTips").html(`
|
||||
<key>tab</key> - restart test<br>
|
||||
<key>esc</key> - command line`);
|
||||
<key>esc</key> or <key>ctrl/cmd</key>+<key>shift</key>+<key>p</key> - command line`);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -324,7 +324,7 @@
|
|||
<input type="number" value="1" min="1" max="10000" />
|
||||
<div class="tip">
|
||||
You can start an infinite test by inputting 0. Then, to stop the test,
|
||||
use the Bail Out feature (esc > Bail Out)
|
||||
use the Bail Out feature (esc or ctrl/cmd + shift + p > Bail Out)
|
||||
</div>
|
||||
<div class="button">ok</div>
|
||||
</div>
|
||||
|
@ -336,7 +336,7 @@
|
|||
<input value="1" />
|
||||
<div class="tip">
|
||||
You can start an infinite test by inputting 0. Then, to stop the test,
|
||||
use the Bail Out feature (esc > Bail Out)
|
||||
use the Bail Out feature (esc or ctrl/cmd + shift + p > Bail Out)
|
||||
</div>
|
||||
<div class="button">ok</div>
|
||||
</div>
|
||||
|
@ -1297,7 +1297,7 @@
|
|||
<key>tab</key>
|
||||
if you have quick tab mode enabled) to restart the typing test.
|
||||
Open the command line by pressing
|
||||
<key>esc</key>
|
||||
<key>ctrl/cmd</key>+<key>shift</key>+<key>p</key> or <key>esc</key>
|
||||
- there you can access all the functionality you need without
|
||||
touching your mouse
|
||||
</p>
|
||||
|
@ -1708,7 +1708,7 @@
|
|||
<div class="tip">
|
||||
tip: You can also change all these settings quickly using the
|
||||
command line (
|
||||
<key>esc</key>
|
||||
<key>ctrl/cmd</key>+<key>shift</key>+<key>p</key> or <key>esc</key>
|
||||
)
|
||||
</div>
|
||||
<!-- <div class="sectionGroupTitle">quick navigation</div> -->
|
||||
|
@ -4184,7 +4184,7 @@
|
|||
<key>enter</key>
|
||||
- Restart Test
|
||||
<br />
|
||||
<key>esc</key>
|
||||
<key>ctrl/cmd</key>+<key>shift</key>+<key>p</key> or <key>esc</key>
|
||||
- Command Line
|
||||
</div>
|
||||
<div class="leftright">
|
||||
|
|
Loading…
Reference in a new issue