diff options
| author | Irene Knapp <ireneista@irenes.space> | 2026-05-21 17:57:18 -0700 |
|---|---|---|
| committer | Irene Knapp <ireneista@irenes.space> | 2026-05-21 17:57:18 -0700 |
| commit | ff09b120141e9d8acbd930d44c3f0596eb05a016 (patch) | |
| tree | a773f714dcf79d864d476d880cf31520c5d7caf7 /vim/syntax | |
| parent | a7a670e41bdaf9c57bfe7bbd802158de91d7d94d (diff) | |
dynamic.e is split up again, and more progress
see dynamic.e, input.e, interpret.e, and flow-control.e there were a couple things in the log-load transform that need to work in compile mode, too Force-Push: yes Change-Id: I7caac3b9205f36f7e082a3fd280561d67e27942c
Diffstat (limited to 'vim/syntax')
| -rw-r--r-- | vim/syntax/evocation.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/syntax/evocation.vim b/vim/syntax/evocation.vim index 62042ae..bb5094f 100644 --- a/vim/syntax/evocation.vim +++ b/vim/syntax/evocation.vim @@ -44,7 +44,7 @@ syn match evocationArithmetic "\(^\|\s\)\zs\(negate\|max\|min\)\ze\($\|\s\)" syn match evocationBlock "\(^\|\s\)\zs[\[\]{};]\ze\($\|\s\)" syn match evocationBlock "\(^\|\s\)\zs;asm\ze\($\|\s\)" -syn match evocationFlow "\(^\|\s\)\zs\(if\|unless\|if-else\|while\|forever\|exit\|make-immediate\|make-hidden\)\ze\($\|\s\)" +syn match evocationFlow "\(^\|\s\)\zs\(if\|unless\|if-else\|while\|forever\|exit\|make-immediate\|make-hidden\|make-visible\)\ze\($\|\s\)" syn match evocationConstantWord "\(^\|\s\)\zs:\S\+\ze\($\|\s\)" |