File tree Expand file tree Collapse file tree
ui/containers/cntdialogs/vterm Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -407,6 +407,15 @@ func (d *VtermDialog) writeToSession(event *tcell.EventKey) {
407407 case tcell .KeyEnter :
408408 log .Debug ().Msgf ("write to session KeyEnter" )
409409 d .writeToStdinSessionWriter (rune (tcell .KeyEnter ))
410+ case tcell .KeyBackspace :
411+ log .Debug ().Msgf ("write to session KeyBackspace" )
412+ d .writeToStdinSessionWriter (rune (tcell .KeyBackspace ))
413+ case tcell .KeyDelete :
414+ log .Debug ().Msgf ("write to session KeyDelete" )
415+ d .writeToStdinSessionWriter (rune (tcell .KeyDelete ))
416+ case tcell .KeyDEL :
417+ log .Debug ().Msgf ("write to session KeyDEL" )
418+ d .writeToStdinSessionWriter (rune (tcell .KeyDEL ))
410419 case tcell .KeyEsc :
411420 log .Debug ().Msgf ("write to session KeyEsc" )
412421 d .writeToStdinSessionWriter (rune (27 )) //nolint:mnd
You can’t perform that action at this time.
0 commit comments