herr kaste

Results 355 comments of herr kaste

So it seems now you solved it and identified it as a cache miss. That is indeed a problem I never thought about: *if* an upper directory (like the HOME...

Validating the cache when opening a special view seems totally reasonable.

> Now, you see the concept of a "main" worktree is entirely up to me to define. Haha, sure if you do a bare clone to begin with. In all...

Switching and opening known worktrees is like switching known sublime projects. It is actually not really important to reimplement this here as we already have that with Sublime Text. For...

Shouldn't a failing hook abort the command by itself?

Okay, I think that's straight forward to implement. If you have a `proc = Popen(...)`, you can friendly use `proc.terminate()` to stop it. `terminate` is afaik totally permissive t.i. you...

I actually have/wrote a plugin that restores the autocomplete functionality from Sublime Text 3 completely. It's not even very difficult, but unpublished atm. Doing this just for the GitSavvy commit...

Yes, we totally need some explanation in the README or a first-starter ".md" file somewhere. Esp. everything gets really faster if users add some main entry points to their key...

Hm, autocomplete always worked on ST3 for me. ST4 dropped that so I had to reimplement it which was really disappointing at that time. The plugin is at https://github.com/kaste/abbrev-autocomplete Just...

Yeah, that's doable. What I currently do is: - when I'm in the tags view, I hit `g` for the graph, and then checkout the tag detached. - when I'm...