mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-15 18:00:07 -04:00
indents(c): fix indentation on block comment
This commit is contained in:
parent
346366a330
commit
616dc885fc
5 changed files with 20 additions and 12 deletions
|
|
@ -6,3 +6,6 @@
|
|||
void foo(int *x, int y) {
|
||||
*x = y;
|
||||
}
|
||||
|
||||
/*
|
||||
*
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ describe("indent C:", function()
|
|||
expected_failures = {
|
||||
"./preproc_func.c",
|
||||
"./label.c",
|
||||
"./comment.c",
|
||||
},
|
||||
})
|
||||
end)
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ describe("indent C++:", function()
|
|||
-- C
|
||||
"c/preproc_func.c",
|
||||
"c/label.c",
|
||||
"c/comment.c",
|
||||
},
|
||||
})
|
||||
end)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue