From 6de7c42653992d2a28b73423defe2999b1b49b4e Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Fri, 4 Jul 2025 14:51:11 -0400 Subject: [PATCH] fixed typo in kakoune pygments post --- content/blog/implementing-kakoune-syntax-highlighting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/blog/implementing-kakoune-syntax-highlighting.md b/content/blog/implementing-kakoune-syntax-highlighting.md index 546d11f..f3b0702 100644 --- a/content/blog/implementing-kakoune-syntax-highlighting.md +++ b/content/blog/implementing-kakoune-syntax-highlighting.md @@ -83,14 +83,14 @@ time of writing) is **not** highlighted correctly: ```kak set buffer filetype kak evaluate-commands %sh{ - echo define-command is-kak %< info -title is-kak 'Not Kak!' > + echo define-command is-kak %< info -title is-kak 'Is Kak!' > } ``` By contrast, here's how the `%sh` string _should_ look: ```sh -echo define-command is-kak %< info -title is-kak 'Not Kak!' > +echo define-command is-kak %< info -title is-kak 'Is Kak!' > ``` Properly detecting these strings isn't currently possible with Pygments'