fixed typo in kakoune pygments post

This commit is contained in:
Daniel Fichtinger 2025-07-04 14:51:11 -04:00
parent 42b8681cf6
commit 6de7c42653

View file

@ -83,14 +83,14 @@ time of writing) is **not** highlighted correctly:
```kak ```kak
set buffer filetype kak set buffer filetype kak
evaluate-commands %sh{ 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: By contrast, here's how the `%sh` string _should_ look:
```sh ```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' Properly detecting these strings isn't currently possible with Pygments'