Quick fixup links on English documentation

Because of the previous moving commit, some links need to be fixed too.
This commit is contained in:
AndersonTorres
2022-09-11 16:32:11 -03:00
committed by Kyle Brown
parent 0ab6887fbe
commit afd184f019
5 changed files with 20 additions and 20 deletions

View File

@@ -1,7 +1,7 @@
# Keys
> NOTE: This is not a lookup table of key objects provided by KMK. That listing
> can be found in [`keycodes.md`](/docs/keycodes.md). It's probably worth a look at the raw source if
> can be found in [`keycodes.md`](/docs/en/keycodes.md). It's probably worth a look at the raw source if
> you're stumped: [`kmk/keys.py`](/kmk/keys.py).
This is a bunch of documentation about how a physical keypress translates to
@@ -31,7 +31,7 @@ objects have a few core pieces of information:
- Their attached modifiers (to implement things like shifted keys or `KC.HYPR`,
which are single key presses sending along more than one key in a single HID
report. This is a distinct concept from Sequences, which are a KMK feature
documented in [`sequences.md`](/docs/sequences.md)). For almost all purposes outside of KMK core,
documented in [`sequences.md`](/docs/en/sequences.md)). For almost all purposes outside of KMK core,
this field should be ignored - it can be safely populated through far more
sane means than futzing with it by hand.
@@ -48,7 +48,7 @@ objects have a few core pieces of information:
functions and some special override keys (like `KC.GESC`, which is an enhanced
form of existing ANSI keys) in [`kmk/handlers/stock.py`](/kmk/handlers/stock.py), for layer switching in
[`kmk/modules/layers.py`](/kmk/modules/layers.py), and for everything related to Sequences (see
[`sequences.md`](/docs/sequences.md) again) in [`kmk/handlers/sequences.py`](/kmk/handlers/sequences.py). We'll discuss these more
[`sequences.md`](/docs/en/sequences.md) again) in [`kmk/handlers/sequences.py`](/kmk/handlers/sequences.py). We'll discuss these more
shortly.
- Optional callbacks to be run before and/or after the above handlers. More on