-
```
~/.config/nvim:
path: ./config/nvim/lazyvim
if: '[ "$NVIM_TYPE" = "lazyvim" ]'
~/.config/nvim:
path: ./config/nvim/kickstart
if: '[ "$NVIM_TYPE" = "kickstart" …
-
https://github.com/sambow7/js-objects-lab/blob/b471cab5b836b61118381c07f8afa1ad44fd27c2/app.js#L101
Seems like you got a little lost int the sauce here Sam. Here's some guidance:
Find the first …
-
### Describe the bug
When else if is not on the same line as the closing bracket nu fails to evaluate variables afterwards.
### How to reproduce
```nu
let condition = 10;
if $condition < 5 {…
-
i had this template in my code:
```
@if condition { path_a }
else { path_b }
```
maud rendered this to:
```
path_a
path_b
```
it would be nice if maud could make all of its own const…
-
Some internal discussions brought up the idea of making calls easier to compose, starting simple with an `if_else` call.
The purpose of this call would be execute an error callback when the first c…
-
**Describe the bug**
If you use an double extended else if statement with boolean expression filled in, undraggable/undeletable else appear
**To Reproduce**
build the following:
![Image](https://git…
-
The first step to accommodate conditional branching is to implement a simple if-else statement.
**TODO:**
- Extend the parser to handle basic `if-else` syntax
- Add support in `expr.ml` for condi…
-
### Did you check existing issues?
- [x] I have read all the [tree-sitter docs](https://tree-sitter.github.io/tree-sitter/using-parsers) if it relates to using the parser
- [x] I have searched the ex…
-
code like this, after processing of shader-minifier, only B is part of else statement, C is out of the scope.
```
#ifdef OPT
if (...)
{
A;
}…
-
# What it does
Checks for if/else with the same body as the then part and the else part.
# Why is this bad?
This is probably a copy & paste error.
# Example
```cairo
let foo = if … {
…