From 4a58ae47b2f2a4474078cfcf4723c8b56051f5a6 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Wed, 3 Jan 2024 15:28:50 -0600 Subject: [PATCH] Add a basic highlighting test --- test/highlight/recipes.just | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 test/highlight/recipes.just diff --git a/test/highlight/recipes.just b/test/highlight/recipes.just new file mode 100644 index 0000000..4defbd5 --- /dev/null +++ b/test/highlight/recipes.just @@ -0,0 +1,19 @@ +#!/use/bin/env just +# <- comment +# ^^^^^^^^^^^^^^^^^ comment + + +foo: +# <- function +# ^ operator + +@bar: +# <- operator +# ^ function +# ^ operator + +baz: foo bar +# <- function +# ^ operator +# ^ function +# ^ function