diff options
| author | Martin Bielik <mx.bielik@gmail.com> | 2024-01-25 23:18:15 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-25 23:18:15 +0100 |
| commit | 819c1bb3c79080128a076aff03b16cfc1f4548c7 (patch) | |
| tree | 457b7c81b511b42ece0704e03b673702a6786d0e /syntax/aichat.vim | |
| parent | 4692eec84b5aa9d95256bef515bd1d17471e5570 (diff) | |
| parent | 9e6f8e8d037a477c55939ece36ab7b000f876e85 (diff) | |
| download | vim-ai-819c1bb3c79080128a076aff03b16cfc1f4548c7.tar.gz | |
Merge pull request #74 from jkoelker/include
feat(chat): add `include` role to include files
Diffstat (limited to 'syntax/aichat.vim')
| -rw-r--r-- | syntax/aichat.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/syntax/aichat.vim b/syntax/aichat.vim index ecd8459..1f32efb 100644 --- a/syntax/aichat.vim +++ b/syntax/aichat.vim @@ -1,5 +1,6 @@ syntax match aichatRole ">>> system" syntax match aichatRole ">>> user" +syntax match aichatRole ">>> include" syntax match aichatRole "<<< assistant" highlight default link aichatRole Comment |