Wind

Results 163 comments of Wind

Sorry, I'm afraid it's conflict with following issue: https://github.com/nushell/nushell/issues/7673 https://github.com/nushell/nushell/issues/4205 https://github.com/nushell/nushell/issues/6993 We need to have a method to opt out of tilde expansion, I think variable is a good way...

After running ` cargo deny check ban`, found that some dependency's Cargo.toml can be updated easily. Submitted some prs to update them: 1. (cfg-if) https://github.com/deprecrated/net2-rs/pull/114 2. (quick-xml) https://github.com/tafia/calamine/pull/293 3. (toml)...

I think this issue is already resolved, I can't reproduce it on 0.80; Will close it for now, fell free to re-open it if you still get the issue

It seems that we can't figure out the difference between the them: 1. (^false; "hello world") 2. (^false | "hello world") 3. ^false | "hello world" Because they all return...

Suddenly I know how to solve the problem....We can check the input value after eval the last element in each pipeline..

Thanks for all your comments! Let me try to summarize the path we're trying to move: #### switch For the given example: ```nushell def foo [--xyz] { print $xyz }...

Yup, if we call `foo` directly, the value of `$xyz` is `false`, I've updated the comment.

`source-env` will be removed(because we can't source-env from dynamic path), we can use `use` to bring env from environment. You can refer to https://www.nushell.sh/blog/2022-09-06-nushell-0_68.html#source-becomes-source-env-jt-kubouch for more details(especially the frist **note**...

Thank you for a good question, I haven't thought about it. After some testing, if I'm in visual mode, `opt+click` will go back to normal mode and create multiple cursors....