disable flash causing screen lock issue

mine
derailed 2019-02-25 20:48:52 -08:00
parent b1f99634e3
commit 454532766f
2 changed files with 1 additions and 2 deletions

View File

@ -106,7 +106,7 @@ func (v *podView) showPicker(cc []string) {
}
func (v *podView) sshInto(path, co string) {
v.app.flash(flashInfo, "Shell into pod", path)
// v.app.flash(flashInfo, "Shell into pod", path)
ns, po := namespaced(path)
if len(co) == 0 {
run(v.app, "exec", "-it", "-n", ns, po, "--", "sh")

View File

@ -186,7 +186,6 @@ func (v *resourceView) editCmd(evt *tcell.EventKey) *tcell.EventKey {
if !v.rowSelected() {
return evt
}
v.app.flash(flashInfo, fmt.Sprintf("Editing %s %s", v.title, v.selectedItem))
ns, s := namespaced(v.selectedItem)
run(v.app, "edit", v.list.GetName(), "-n", ns, s)
return evt