Commit graph

63 commits

Author SHA1 Message Date
Bruno BELANYI 9012a19840 WIP: PLAYGROUND
All checks were successful
ci/woodpecker/push/check Pipeline was successful
2024-04-22 09:57:56 +00:00
Bruno BELANYI 93a71d095b Add more generated files attributes
All checks were successful
ci/woodpecker/push/check Pipeline was successful
2024-04-22 09:54:16 +00:00
Bruno BELANYI bc4db561ca Bump flake inputs
All checks were successful
ci/woodpecker/push/check Pipeline was successful
This means regenerating all the tree-sitter files, and adding newly
generated outputs (mostly new bindings).

The `--apply-all-captures` flag has been removed, it is now the default
(and only) matching behaviour.
2024-04-22 09:49:18 +00:00
Bruno BELANYI b04cd92189 Add locals queries
All checks were successful
ci/woodpecker/push/check Pipeline was successful
Once again, treating module as function calls, since that's basically
what they are...
2024-04-14 13:00:17 +01:00
Bruno BELANYI 6d6d9fc03b Add test for multiple arguments in selection type 2024-04-14 13:00:17 +01:00
Bruno BELANYI 6ece5d984a Release 0.3.0
All checks were successful
ci/woodpecker/push/check Pipeline was successful
2024-04-13 18:27:56 +01:00
Bruno BELANYI e6a2757c51 Alias 'default_case' to 'select_case'
There's not much use in the node being a different name.
2024-04-13 18:23:06 +01:00
Bruno BELANYI 8db7b053f5 Add 'default' alias
This makes it appear in the tree as a named node.
2024-04-13 18:21:58 +01:00
Bruno BELANYI d297f38e6a Fix typos in indentation test runner
All checks were successful
ci/woodpecker/push/check Pipeline was successful
2024-04-13 18:17:22 +01:00
Bruno BELANYI cc84a43055 Release 0.2.0
All checks were successful
ci/woodpecker/push/check Pipeline was successful
2024-04-13 17:11:41 +01:00
Bruno BELANYI 0ca28eb2e9 Add indentation tests 2024-04-13 17:07:43 +01:00
Bruno BELANYI f8f328fa17 Add indentation queries 2024-04-13 17:07:37 +01:00
Bruno BELANYI 9ee889d7ad Make 'punctuation' highlight test more exhaustive 2024-04-13 17:07:29 +01:00
Bruno BELANYI 9889191245 Fix indentation in test files 2024-04-13 17:07:23 +01:00
Bruno BELANYI 6bd28f2b6b Add NeoVim test runner
For the queries that can't be tested with `tree-sitter` itself.
2024-04-13 17:07:16 +01:00
Bruno BELANYI 9e9fde6c77 Add 'comment' injection 2024-04-13 16:01:26 +01:00
Bruno BELANYI 615bb266cc Add folding query 2024-04-13 16:01:26 +01:00
Bruno BELANYI 9457caf3a2 Fix typo in a comment 2024-04-11 18:44:13 +01:00
Bruno BELANYI adec624d74 Tweak comment parsing
This is taken verbatim from tree-sitter-c [1], just in case :-).

[1]: https://github.com/tree-sitter/tree-sitter-c
2024-04-11 18:38:14 +01:00
Bruno BELANYI b62fc19da9 Make comments a single node in the grammar
This looks to be a *strong* idiom in tree-sitter parsers.
2024-04-11 18:36:20 +01:00
Bruno BELANYI aa8472e73f Add test for literals 2024-04-11 18:08:40 +01:00
Bruno BELANYI 508ea00920 Add missing 'PHONY' target 2024-04-11 18:01:32 +01:00
Bruno BELANYI dc1d139d35 Fix 'PHONY' target name 2024-04-11 18:00:12 +01:00
Bruno BELANYI ebb642cb14 Rename to 'tree-sitter-bp'
All checks were successful
ci/woodpecker/push/check Pipeline was successful
This is really just to simplify my life and align with the Vim/NeoVim
filetype name.
2024-04-10 15:32:37 +00:00
Bruno BELANYI f6e1266493 Consider module as function call for highlighting
All checks were successful
ci/woodpecker/push/check Pipeline was successful
Their semantic is closer to a function call (like i.e: Bazel rules)
rather than a module/namespace.

Similarly for their properties, which are more like parameters than
members.
2024-04-10 15:21:07 +00:00
Bruno BELANYI be1e3f07d3 Make 'line_comment' more explicit about newlines
Because of the way regular expressions work, they were already bounded
at newlines here, but explicit is better than implicit :-).
2024-04-10 15:20:29 +00:00
Bruno BELANYI 73b0797891 Add builtins highlighting 2024-04-10 15:20:29 +00:00
Bruno BELANYI 3475d713d5 Add 'select' highlighting 2024-04-09 12:28:28 +01:00
Bruno BELANYI ddb4f693be Add test for 'select' as an identifier 2024-04-09 12:28:28 +01:00
Bruno BELANYI ab6d235540 Add map properties highlighting 2024-04-09 12:28:28 +01:00
Bruno BELANYI 42bef1d592 Add punctuations highlighting 2024-04-09 12:28:28 +01:00
Bruno BELANYI a9ec312792 Add modules highlighting
Still debating whether modules should be highlighted as namespaces or as
function calls.
2024-04-09 12:28:28 +01:00
Bruno BELANYI 3e4879a593 Add 'type' field to new-style module
I'd forgotten it...
2024-04-09 12:28:28 +01:00
Bruno BELANYI d4d88a6f01 Use nvim semantics in tests
To be more explicit: this makes it so the behaviour is "last-defined,
innermost capture wins".
2024-04-09 12:28:28 +01:00
Bruno BELANYI 7d6dce936a Account for '-' as an operator
For syntax purposes it's part of the number, but it looks better when
highlighted as an operator.
2024-04-09 12:28:28 +01:00
Bruno BELANYI 91e6f7841c Add operators highlighting 2024-04-09 12:28:28 +01:00
Bruno BELANYI 69e7f36f75 Add variables highlighting 2024-04-09 12:28:28 +01:00
Bruno BELANYI b9fd34c084 Add literals highlighting 2024-04-08 20:48:15 +01:00
Bruno BELANYI e2aa90e0f4 Add comments highlighting 2024-04-08 20:48:15 +01:00
Bruno BELANYI 384da2d065 Add test for multiple modules 2024-04-08 20:27:53 +01:00
Bruno BELANYI acd1a926ab Release 0.1.0
All checks were successful
ci/woodpecker/push/check Pipeline was successful
2024-04-08 20:15:59 +01:00
Bruno BELANYI eec21c84da Add block comments 2024-04-08 20:15:59 +01:00
Bruno BELANYI 6d3dd1c8cb Fix line comments syntax
Don't write parsers after midnight kids.

For the explanation: I mixed up the syntax bits between Blueprint and
textual protocol buffers...
2024-04-08 20:15:59 +01:00
Bruno BELANYI 7bacff2471 Add 'bump-version' script 2024-04-08 20:15:59 +01:00
Bruno BELANYI 3e46a9b762 Add 'operator' aliases 2024-04-08 20:15:59 +01:00
Bruno BELANYI 25924c3c5c Add binary expression 2024-04-08 20:15:59 +01:00
Bruno BELANYI 5489bd5380 Add README 2024-04-08 20:15:59 +01:00
Bruno BELANYI 2549f6f0db Add 'property' alias
It makes the syntax tree more readable.
2024-04-08 20:15:59 +01:00
Bruno BELANYI 644f6483fe Add 'element' field name to list 2024-04-08 20:15:59 +01:00
Bruno BELANYI d232c089df Add 'property' field name where relevant 2024-04-08 20:15:59 +01:00