Ian Manske

Results 80 comments of Ian Manske

@alfonsogarciacaro Sorry I haven't been following this too closely. I've rebased my fork, let me know if anything looks off. I know that dotnet `6.0.401` came out, but I haven't...

I am getting the same panic/message on linux when running nu through my window manager (sway). (E.g., using a key binding to run a nu script.) By launching nu this...

Just an update, the panic no longer occurs if the cursor is after `ls`. But a panic can still happen if the cursor is anywhere before `ls` (not just the...

Another method that may work is: ```javascript const copy = new SomeRecord(...Object.values(record)); copy.field = newValue; ``` This should work as long as the constructor assigns properties in the order that...

If I understand correctly, - backticked strings can't contain backticks and also cannot be used with `let` without `echo`. - single quoted strings can't contain single quotes. Meaning that these...

Yeah disregard my second point, I'm not sure if there's a way to add raw strings without adding a new syntax. > I picked a char. I originally had @....

@fdncred Yeah, that sounds good. Although, I think the `r` might be unnecessary. Languages like Rust and Python always process escape sequences in strings, so the `r` indicates that escape...

For more context, there was a discord [thread](https://discord.com/channels/601130461678272522/1130212528161558659/) about this as well. In my case, I had `sudo` symlinked to `doas` which does not have the same issue. Actually using...

I am having the same output as @amtoine on my system, except for the following: - all of these are essentially the same pipeline: - :red_circle: `echo "firefox\nvim" | sudo...