mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-07 22:10:01 -04:00
feat: add indentation queries for angular
This commit is contained in:
parent
276c343b6b
commit
0d5e1214a5
6 changed files with 127 additions and 0 deletions
9
tests/indent/angular/defer.html
Normal file
9
tests/indent/angular/defer.html
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
@defer (on viewport) {
|
||||
<calendar-cmp />
|
||||
} @placeholder (minimum 100ms) {
|
||||
<small-component />
|
||||
} @loading (after 100s; minimum 200ms){
|
||||
<loading-spinner />
|
||||
} @error {
|
||||
<error-message />
|
||||
}
|
||||
5
tests/indent/angular/for.html
Normal file
5
tests/indent/angular/for.html
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
@for (item of items; track item.id) {
|
||||
<li>{{ item.name }}</li>
|
||||
} @empty {
|
||||
<p>No items</p>
|
||||
}
|
||||
15
tests/indent/angular/if-else.html
Normal file
15
tests/indent/angular/if-else.html
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
@if (someCondition) {
|
||||
<p>someCondition is true</p>
|
||||
} @else {
|
||||
<p>someCondition is false</p>
|
||||
}
|
||||
|
||||
<div>
|
||||
@if (someOther) {
|
||||
<span>True</span>
|
||||
|
||||
@if (nestedCondition) {
|
||||
<span>Nested</span>
|
||||
}
|
||||
}
|
||||
</div>
|
||||
13
tests/indent/angular/switch-case.html
Normal file
13
tests/indent/angular/switch-case.html
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<div>
|
||||
@switch (obj.property) {
|
||||
@case (1) {
|
||||
<p>Case 1</p>
|
||||
}
|
||||
@case (2) {
|
||||
<p>Case 2</p>
|
||||
}
|
||||
@default {
|
||||
<p>Default</p>
|
||||
}
|
||||
}
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue