Ajeet D'Souza
Ajeet D'Souza
Are you able to select things with fzf?
That's a somewhat niche use case, so there's no real way to do this at the moment. I'd recommend just running `zoxide add .` in the new directory a couple...
Hey Christian, what filesystem are you using? This sounds like a problem that could be fixed with a simple environment variable that converts all paths to lowercase/uppercase, but I'm not...
Thanks! Could you try adding `foo` and `Foo` using `export _ZO_RESOLVE_SYMLINKS=1` and tell me your findings?
One question here is -- should `z doc Foo` match `~/Documents/Foo`? I'd think not -- either the whole query should be smartcase or none of it should be. ---- I...
@kidonng I'm curious as to why you'd want to disable smartcase matching. I wouldn't expect anyone to use uppercase in a query unless they were hoping for results with the...
@PurpleMyst there's already a [pending PR](https://github.com/ajeetdsouza/zoxide/pull/264) on improving search which will very likely conflict with this. I haven't really had time to look into it yet, but for now, I'd...
The problem here seems to be that `\\NAS\Share` resolves to `\\?\UNC\NAS\Share`, which PowerShell refuses to cd into. The UNC path _is_ technically valid - for example, Python would have no...
This should be resolved in the `dunce` crate, I've filed an issue here: https://gitlab.com/kornelski/dunce/-/issues/2
I'm not so sure about this. I'm usually always open to adding support for more shells, but people generally seem to recommend against using tcsh: - [Reddit thread](https://www.reddit.com/r/commandline/comments/5zmx55/anybody_here_still_using_cshtcsh/) - [Csh...