1

Update generated neovim config

This commit is contained in:
2024-08-15 14:28:54 +02:00
parent 07409c223d
commit 25cfcf2941
3809 changed files with 351157 additions and 0 deletions

View 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 />
}

View File

@ -0,0 +1,5 @@
@for (item of items; track item.id) {
<li>{{ item.name }}</li>
} @empty {
<p>No items</p>
}

View 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>

View 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>