From 92e761834666557132c1c70926d807c5d102d82e Mon Sep 17 00:00:00 2001 From: Cem Aksoylar Date: Mon, 28 Mar 2022 17:06:13 -0700 Subject: [PATCH] fix(docs): Fix Windows unicode macro example --- docs/docs/behaviors/macros.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/behaviors/macros.md b/docs/docs/behaviors/macros.md index abc6ef43..aca9eb7a 100644 --- a/docs/docs/behaviors/macros.md +++ b/docs/docs/behaviors/macros.md @@ -187,14 +187,14 @@ bindings ### Unicode Sequences -Many operating systems allow a special sequence to input unicode characters, e.g. [Windows alt codes](https://support.microsoft.com/en-us/office/insert-ascii-or-unicode-latin-based-symbols-and-characters-d13f58d3-7bcb-44a7-a4d5-972ee12e50e0). You can use macros to insert there automatically, e.g.: +Many operating systems allow a special sequence to input unicode characters, e.g. [Windows alt codes](https://support.microsoft.com/en-us/office/insert-ascii-or-unicode-latin-based-symbols-and-characters-d13f58d3-7bcb-44a7-a4d5-972ee12e50e0). You can use macros to automate inputting the sequences, e.g. below macro inserts `£` on Windows: ``` wait-ms = <40>; tap-ms = <40>; bindings = <¯o_press &kp LALT> - , <¯o_tap &kp N0 &kp N1 &kp N6 &kp N3> + , <¯o_tap &kp KP_N0 &kp KP_N1 &kp KP_N6 &kp KP_N3> , <¯o_release &kp LALT> ; ```