Chris Walz
Chris Walz
@gensjaak could you provide me a list of all the gitmoji options. I was hoping to see a list somewhere on the github repo but didn't see one. Here's a...
@gensjaak I merge a pre-alpha version for gitmoji `bit gitmoji`I It's not very elegant to use since you select a description and then bit does a find and replace to...
Can you walk me through what buttons you're pressing to reach this state. Also what `bit --version` do you have?
I believe this issue is related: https://github.com/c-bata/go-prompt/issues/209
@jyn514 There's `git merge --squash` that I believe effectively does the same thing
Ah so it's a matter of merge vs. rebasing. It's strange how git provides one but not the other but I guess that's what bit is for 😛. Some potential...
@jyn514 boo, I've tested it on Mac and Ubuntu and seemed to work fine 🤔
That's likely the issue. This is how it's implemented. ``` prompt.OptionAddASCIICodeBind(prompt.ASCIICodeBind{ ASCIICode: []byte{0x1b, 0x62}, Fn: prompt.GoLeftWord, }), prompt.OptionAddASCIICodeBind(prompt.ASCIICodeBind{ ASCIICode: []byte{0x1b, 0x66}, Fn: prompt.GoRightWord, }), ``` Unclear what would be an...
bit 39d807e24c5be4fc081e29623ed09d0dd13d497c will now: - searches for suggestions based on prefix except for branches where it will do a "contains" filter - shows branches for log & rebase Future work:...