Results 28 comments of Tomas

I've got the same problem - fish: 3.5.1 on MacOS M1 installed with homebrew - zoxide 0.8.2 Fish comes with a completion in `/opt/homebrew/share/fish/completions/j.fish`: ```fish function __history_completions --argument-names limit if...

I had the same issue. Can you guys run `alias cd` in your command line? If you you for example have `alias cd="nocorrect cd"` `black-screen` will use this alias to...

@shockone: Understand. I'll try to have a look how the `$PROMPT_COMMAND` in `zsh` works. I don't think it's going to be an easy issue to solve and I'm not even...

@christiangenco that solution works only when you use the :ssh_options configuration, when you put the port into connection string or in server options, it won't work. I fixed this by...

> There is also a mistake in `godu` diagram https://github.com/viktomas/godu/blob/master/CONTRIBUTING.md#godu-architecture - no such class as `InteractiveTree`. Thanks @abitrolly for pointing this out. I've updated the diagram in https://github.com/viktomas/godu/pull/73 🎉

Unfortunately not. There is only the Linux binary for each release https://github.com/viktomas/godu/releases/tag/v1.3

Thanks for creating the issue @dundee. Do you suggest that ``` calls with a positive delta that occur when the counter is zero ``` might happen after we call the...

Thanks for the suggestion @mikemadden42. I'm not familiar with the sparse file concept. `godu` uses [`ioutil.ReadDir()`](https://golang.org/pkg/io/ioutil/#ReadDir) under the hood. That returns bunch of [`os.FileInfo`](https://golang.org/pkg/os/#FileInfo) references. If there is an easy...

That's a good idea. That will require some changes to the core design since `godu` has been designed to be read only, 1 walk through. I'll think about it and...

The structure you described roughly reflects the implementation. The main issue I see is that the original design parses the file data into a read-only structure.