diff options
| author | Abhishek Singh <abhisheksingh0x558@icloud.com> | 2024-11-05 19:55:42 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-05 15:25:42 +0100 |
| commit | 604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e (patch) | |
| tree | be2467c93f6297b2f2b22111af974ffed030d125 /tests/indent/nu/closure.nu | |
| parent | bot(lockfile): update dhall, printf, regex, ziggy, ziggy_schema (diff) | |
| download | nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar.gz nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar.bz2 nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar.lz nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar.xz nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.tar.zst nvim-treesitter-604aa5a7c8cf1fd0c4ad667a0cc7fb8aaf0be33e.zip | |
feat(nu): add parser and queries (#7267)
Diffstat (limited to 'tests/indent/nu/closure.nu')
| -rw-r--r-- | tests/indent/nu/closure.nu | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/indent/nu/closure.nu b/tests/indent/nu/closure.nu new file mode 100644 index 000000000..ef6301e4a --- /dev/null +++ b/tests/indent/nu/closure.nu @@ -0,0 +1,6 @@ +do { |x, y| + print ($x + $y); + print ($x - $y); + print ($x * $y); + print ($x / $y); +} |
