lost22git
lost22git
https://github.com/Canop/broot/blob/4856d360c83ca0ac6a341afa577ec3e875de113c/src/shell_install/powershell.rs#L29C1-L29C1 Modify `$($cmd_file.FullName)` to ``` `"$($cmd_file.FullName)`" ``` maybe work
can you try the product compiled on my local machine? [broot.zip](https://github.com/lost22git/broot/files/13329023/broot.zip) 1. Remove the original broot 2. Add the newly downloaded broot.exe path to env path 3. `broot --install` 4....
@Elkiwa You can check whether these two files exist and whether their contents are normal * C:\Users\{username}\AppData\Roaming\dystroy\broot\config\launcher\powershell\br.ps1 * C:\Users\{username}\Documents\WindowsPowerShell\Profile.ps1 in my windows powershell ```powershell PS C:\Users\zzz> broot --install You requested...
@Elkiwa If those two files are not generated, you can obtain the log file in the current directory by following the steps below: 1. `$env:BROOT_LOG='debug' ; broot --install` 2. `cat...
https://github.com/Canop/broot/blob/996b34fb5cb2dfafe87269ee97b895b4e09bf937/src/shell_install/powershell.rs#L80C1-L80C1 Looks like a third-party library [directories-rs](https://github.com/dirs-dev/directories-rs) issue
[broot.zip](https://github.com/Canop/broot/files/13402005/broot.zip) I upgraded broot's directories-rs to the latest version. This is the new compiled product. you can try it
@Canop I'm not sure if directories-rs has fixed this problem
Add action config: * for powershell ``` { invocation: zoxide shortcut: z key: "alt-z" external: "br (zoxide query -i)" from_shell: true leave_broot: true } ``` * linux shell ``` {...

You can try this if you can not use `br` ``` { invocation: zoxide shortcut: z key: "alt-z" external: "sh -c \"broot $(zoxide query -i)\"" from_shell: false leave_broot: true }...