Jesse Duffield
Jesse Duffield
@birgersp I suspect this is because your Go version doesn't have support for generics (introduced in go 1.18). The constraints package is specific to generics
Sorry for the very belated response @probablykasper . the `[2;K` form should be properly parsed now, but the `[1;G` form isn't implemented. This is all handled in `vendor/github.com/jesseduffield/gocui/escape.go` in the...
good question. To my knowledge, docker wouldn't ask you to for a password upon trying to push, it would just fail if you're not already logged into the registry. I'm...
All three of the keybindings (tagging, pushing, pulling) * the keybindings need to be set in `pkg/gui/keybindings.go` * the handlers for the keybindings need to be created in `pkg/gui/images_panel.go`
You can use this as an example: ```go return gui.createPromptPanel(gui.Tr.CustomCommandTitle, func(g *gocui.Gui, v *gocui.View) error { command := gui.trimmedContent(v) return gui.runSubprocess(gui.OSCommand.RunCustomCommand(command)) }) ```
I see that you've taken on a few different issues @26tanishabanik , if you've got other issues in motion it might be worth handing this one off to @glendsoza
@26tanishabanik yep go ahead and raise a PR. In response to your question, you say you used `debain:jessie` but that itself contains a spelling error. It should be `debian:jessie`
Perhaps raise a PR and then I can pull it down and check it out myself
@26tanishabanik the problem is that you're passing the image ID to the `ImagePull` method, and that starts with sha256, which is why it shows up in the error message. I...
You might want to pull again if dealing with an immutable tag like 'latest' I'm happy with the image:tag approach in one prompt.