Skip to content

Commit 46c336c

Browse files
committed
Update QMK doc links.
1 parent fdd9170 commit 46c336c

File tree

12 files changed

+18
-18
lines changed

12 files changed

+18
-18
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ Sturdy](https://getreuer.info/posts/keyboards/alt-layouts/index.html#magic-sturd
9191
## Installation
9292

9393
This repo works as an [External QMK
94-
Userspace](https://docs.qmk.fm/#/newbs_external_userspace). Instructions on how
94+
Userspace](https://docs.qmk.fm/newbs_external_userspace). Instructions on how
9595
to use it in QMK:
9696

97-
1. [Set up QMK](https://docs.qmk.fm/#/newbs).
97+
1. [Set up QMK](https://docs.qmk.fm/newbs).
9898

9999
2. Clone this repo locally
100100

features/achordion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ uint16_t achordion_timeout(uint16_t tap_hold_keycode);
142142
* }
143143
*
144144
* @note `mod` should be compared with `MOD_` prefixed codes, not `KC_` codes,
145-
* described at <https://docs.qmk.fm/#/mod_tap>.
145+
* described at <https://docs.qmk.fm/mod_tap>.
146146
*
147147
* @param mod Modifier `MOD_` code.
148148
* @return True if the modifier should be eagerly applied.

features/autocorrection.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include "autocorrection_data.h"
2828

2929
#pragma message \
30-
"Autocorrect is now a core QMK feature! To use it, update your QMK set up and see https://docs.qmk.fm/#/feature_autocorrect"
30+
"Autocorrect is now a core QMK feature! To use it, update your QMK set up and see https://docs.qmk.fm/features/autocorrect"
3131

3232
#if AUTOCORRECTION_MIN_LENGTH < 4
3333
// Odd output or hard locks on the board have been observed when the min typo

features/autocorrection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* --------
2121
*
2222
* @note Autocorrect is now a core QMK feature! See
23-
* <https://docs.qmk.fm/#/feature_autocorrect>
23+
* <https://docs.qmk.fm/features/autocorrect>
2424
*
2525
* Some words are more prone to typos than others. This userspace QMK library
2626
* implements rudimentary autocorrection, automatically detecting and fixing

features/caps_word.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include "caps_word.h"
2424

2525
#pragma message \
26-
"Caps Word is now a core QMK feature! To use it, update your QMK set up and see https://docs.qmk.fm/#/feature_caps_word"
26+
"Caps Word is now a core QMK feature! To use it, update your QMK set up and see https://docs.qmk.fm/features/caps_word"
2727

2828
#if !defined(IS_QK_MOD_TAP)
2929
// Attempt to detect out-of-date QMK installation, which would fail with

features/caps_word.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* --------
2121
*
2222
* @note Caps Word is now a core QMK feature! See
23-
* <https://docs.qmk.fm/#/feature_caps_word>
23+
* <https://docs.qmk.fm/features/caps_word>
2424
*
2525
* This library implements "Caps Word", which is like conventional Caps Lock,
2626
* but automatically disables itself at the end of the word. This is useful for

features/repeat_key.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include "repeat_key.h"
2121

2222
#pragma message \
23-
"Repeat Key is now a core QMK feature! To use it, update your QMK set up and see https://docs.qmk.fm/#/feature_repeat_key"
23+
"Repeat Key is now a core QMK feature! To use it, update your QMK set up and see https://docs.qmk.fm/features/repeat_key"
2424

2525
#if !defined(IS_QK_MOD_TAP)
2626
// Attempt to detect out-of-date QMK installation, which would fail with

features/repeat_key.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* @brief Repeat Key - an extensible "repeat last key" implementation.
1818
*
1919
* @note Repeat Key is now a core QMK feature! See
20-
* <https://docs.qmk.fm/#/feature_repeat_key>
20+
* <https://docs.qmk.fm/features/repeat_key>
2121
*
2222
* Repeat Key performs the action of last pressed key. Tapping the Repeat Key
2323
* after tapping the Z key types another "z." Repeat Key remembers the modifiers

getreuer.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ enum custom_keycodes {
153153

154154

155155
///////////////////////////////////////////////////////////////////////////////
156-
// Combos (https://docs.qmk.fm/#/feature_combo)
156+
// Combos (https://docs.qmk.fm/features/combo)
157157
///////////////////////////////////////////////////////////////////////////////
158158
const uint16_t caps_combo[] PROGMEM = {KC_J, KC_COMM, COMBO_END};
159159
const uint16_t j_k_combo[] PROGMEM = {KC_J, KC_K, COMBO_END};
@@ -187,7 +187,7 @@ uint8_t NUM_CUSTOM_SHIFT_KEYS =
187187
#endif // CUSTOM_SHIFT_KEYS_ENABLE
188188

189189
///////////////////////////////////////////////////////////////////////////////
190-
// Tap-hold configuration (https://docs.qmk.fm/#/tap_hold)
190+
// Tap-hold configuration (https://docs.qmk.fm/tap_hold)
191191
///////////////////////////////////////////////////////////////////////////////
192192
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t* record) {
193193
switch (keycode) {
@@ -252,7 +252,7 @@ uint16_t achordion_timeout(uint16_t tap_hold_keycode) {
252252
#endif // ACHORDION_ENABLE
253253

254254
///////////////////////////////////////////////////////////////////////////////
255-
// Autocorrect (https://docs.qmk.fm/#/feature_autocorrect)
255+
// Autocorrect (https://docs.qmk.fm/features/autocorrect)
256256
///////////////////////////////////////////////////////////////////////////////
257257
#ifdef AUTOCORRECT_ENABLE
258258
bool apply_autocorrect(uint8_t backspaces, const char* str,
@@ -266,7 +266,7 @@ bool apply_autocorrect(uint8_t backspaces, const char* str,
266266
#endif // AUTOCORRECT_ENABLE
267267

268268
///////////////////////////////////////////////////////////////////////////////
269-
// Caps word (https://docs.qmk.fm/#/feature_caps_word)
269+
// Caps word (https://docs.qmk.fm/features/caps_word)
270270
///////////////////////////////////////////////////////////////////////////////
271271
#ifdef CAPS_WORD_ENABLE
272272
bool caps_word_press_user(uint16_t keycode) {
@@ -338,7 +338,7 @@ char sentence_case_press_user(uint16_t keycode, keyrecord_t* record,
338338
#endif // SENTENCE_CASE_ENABLE
339339

340340
///////////////////////////////////////////////////////////////////////////////
341-
// Repeat key (https://docs.qmk.fm/#/feature_repeat_key)
341+
// Repeat key (https://docs.qmk.fm/features/repeat_key)
342342
///////////////////////////////////////////////////////////////////////////////
343343
bool remember_last_key_user(uint16_t keycode, keyrecord_t* record,
344344
uint8_t* remembered_mods) {
@@ -518,7 +518,7 @@ void caps_word_set_user(bool active) {
518518
#endif // STATUS_LED_3
519519

520520
///////////////////////////////////////////////////////////////////////////////
521-
// User macro callbacks (https://docs.qmk.fm/#/feature_macros)
521+
// User macro callbacks (https://docs.qmk.fm/feature_macros)
522522
///////////////////////////////////////////////////////////////////////////////
523523

524524
void keyboard_post_init_user(void) {

tools/qmk_song_player/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ <h1 id="song-title">QMK song player</h1>
157157
</div>
158158

159159
<p><b>What is this?</b> The box above is a QMK song player.
160-
If you have a QMK keyboard with a speaker, you can use <a href="https://docs.qmk.fm/#/feature_audio">
160+
If you have a QMK keyboard with a speaker, you can use <a href="https://docs.qmk.fm/features/audio">
161161
the audio feature</a> to play simple songs.</p>
162162

163163
<script src="./main.min.js"></script>

tools/qmk_song_player/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"keywords": [],
99
"author": "Pascal Getreuer",
1010
"license": "Apache-2.0",
11-
"description": "The Quantum Mechanical Keyboard (QMK) firmware has a feature for playing simple songs (https://docs.qmk.fm/#/feature_audio?id=songs). This library reads song in QMK's song code syntax and plays them using Web Audio.",
11+
"description": "The Quantum Mechanical Keyboard (QMK) firmware has a feature for playing simple songs (https://docs.qmk.fm/features/audio#songs). This library reads song in QMK's song code syntax and plays them using Web Audio.",
1212
"devDependencies": {
1313
"@types/jest": "^29.5.2",
1414
"jest": "^29.5.0",

tools/qmk_song_player/song.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* QMK song player.
1717
*
1818
* The Quantum Mechanical Keyboard (QMK) firmware has a feature for playing
19-
* simple songs (https://docs.qmk.fm/#/feature_audio?id=songs). This library
19+
* simple songs (https://docs.qmk.fm/features/audio#songs). This library
2020
* reads song in QMK's song code syntax and plays them using Web Audio.
2121
*/
2222

0 commit comments

Comments
 (0)