
Describe the bug
Nothing happens when I use 'c' to copy.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Simply copy:
func (v *resourceView) cpCmd(evt *tcell.EventKey) *tcell.EventKey {
if !v.masterPage().RowSelected() {
return evt
}
_, n := namespaced(v.masterPage().GetSelectedItem())
log.Debug().Msgf("Copied selection to clipboard %q", n)
v.app.Flash().Info("Current selection copied to clipboard...")
clipboard.WriteAll(n)
return nil
}
Versions:
(I am a coworker of @raphaunix)
Apparently, the clipboard package has some dependencies and since we didn't have these installed it was erroring out without further notice. I have create a PR that adds a error message to improve the user experience.
Here is an example when you don't have the needed tools available:

@raphaunix @paivagustavo Thank you so much for this report!
@paivagustavo I'll take a look at the PR and see what's up with that. Thank you for your contributions!!
Most helpful comment
(I am a coworker of @raphaunix)
Apparently, the
clipboardpackage has some dependencies and since we didn't have these installed it was erroring out without further notice. I have create a PR that adds a error message to improve the user experience.Here is an example when you don't have the needed tools available:
