Chris Walz

Results 49 comments of Chris Walz

Ecosystem: V2 OS: Mac OS Catalina Shell: zsh Installation: A Go binary is installed on users machine via this command `curl -sf https://gobinaries.com/chriswalz/bit/bitcomplete | sh && COMP_INSTALL=1 bitcomplete` Here's the...

So if I understand correctly, there isn't a good workaround for this unless Go changes the way it handles flags. I'm probably reading the code wrong but couldn't `complete.Command` take...

Cool depending on how much time I have, I could probably help out 👍

Hey @posener I wrote up a proof of concept here https://github.com/chriswalz/complete/commit/b376a8312e6b63306cf84960a4356773cf6f2b55 Some notes: 1. it's a small code change but it would break backwards compatibility so I suppose there is...

1. Agreed, I'll try to figure out a way to not break backwards compatibility 2. The two tests I listed in point 2 are the tests.

@posener hey please check out this PR #129. The idea is that instead of this: `gogo.Complete("go")` You use this to enable the old way of unix style (without breaking backwards...

I'm not that familiar with optional interfaces but I believe I understand what you mean. For context I'm partially wrapping `git` in https://github.com/chriswalz/bit. Ideally if I could tap into `git`'s...

Hi @rustiever nice job I think you're pretty close although I haven't tested your code. Here is the key change. The api should be: `bit fix undo-commit` and right now...

Hey maybe start off with bit fix undo-commit This would mean you'd do a soft reset of the commit only if it hasn't been pushed already If (aheadOfRemoteBranch()) { git...

Hey don't be afraid to get your hands dirty and create a new branch. Yes create a file fix.go in cmd! Check this for some additional guidance on adding a...