diff options
| author | Christoph Sax <xasc@users.noreply.github.com> | 2023-05-18 09:40:13 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-18 16:40:13 +0900 |
| commit | 16cce8df58b83b328e8448087308e3a90da6fa17 (patch) | |
| tree | 4b688a5cc62bc33a3700445973e1852447bb52f3 /tests/indent/t32/while_block.cmm | |
| parent | fixup: use correct require syntax (diff) | |
| download | nvim-treesitter-16cce8df58b83b328e8448087308e3a90da6fa17.tar nvim-treesitter-16cce8df58b83b328e8448087308e3a90da6fa17.tar.gz nvim-treesitter-16cce8df58b83b328e8448087308e3a90da6fa17.tar.bz2 nvim-treesitter-16cce8df58b83b328e8448087308e3a90da6fa17.tar.lz nvim-treesitter-16cce8df58b83b328e8448087308e3a90da6fa17.tar.xz nvim-treesitter-16cce8df58b83b328e8448087308e3a90da6fa17.tar.zst nvim-treesitter-16cce8df58b83b328e8448087308e3a90da6fa17.zip | |
feat(t32): add indent rules (#4782)
Diffstat (limited to 'tests/indent/t32/while_block.cmm')
| -rw-r--r-- | tests/indent/t32/while_block.cmm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/indent/t32/while_block.cmm b/tests/indent/t32/while_block.cmm new file mode 100644 index 000000000..bfcbd45db --- /dev/null +++ b/tests/indent/t32/while_block.cmm @@ -0,0 +1,14 @@ +WHILE &a + Step + +WHILE (sYmbol.EXIT(main)) +( + Step + Break +) + +WHILE (FALSE()) +// comment +( + ECHO "test" +) |
