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'