Jakub Žádník

Results 215 comments of Jakub Žádník

`~` should work fine. Can you post exactly how you did the expansion and prepending in the config? `~/.cargo/bin | path expand` should work fine. It should work without the...

This is an interesting idea but I'm not a fan of introducing yet another implicit rule of searching for a `completions` directory and reading all `**/init.nu` files inside. Completions in...

Welcome to Nushell! Currently, that's not possible. We're planning to revamp how we do the command typing and integrate it into the language better. Listing/suggesting commands by type would be...

> Kind of on topic, I'm wondering if we should make all PRs be submitted in draft mode, and then when the author thinks it's ready for review, the author...

I can't reproduce it on Linux. What if you set both Path and PATH to `[]`?

I'd say any fix is better than no fix. Have you determined the root cause? Btw, you can try defining the alias as `alias la = (ls -la | sort-by...

Non-zero exit code, unfortunately, is not a guarantee a program encountered an error. For example ImageMagick's `compare` will return `1` on success, `2` on error. There is no reliable way...

Yeah, you'd need to remove the alias to be able to call the original. Can you write up exact reproduction steps for `hide` hiding the alias in the global scope?

Indeed, that is a true bug. When you put the above to the config, the `ls` will not be aliased anymore. It also happens when you run it all in...

You can set `PWD` environment variable before running Nushell: `PWD=/foo/bar nu`.