Fix delete key in st (#425)

master
jaredforrest 5 years ago committed by GitHub
parent 7ee6de39a1
commit aa9ca84cb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/curses/window.cpp

@ -948,6 +948,8 @@ Key::Type Window::getInputChar(int key)
m_mouse_event.y = (raw_y - 33) & 0xff;
return define_mouse_event(key);
}
case 'P': // st
return Key::Delete;
case 'Z':
return Key::Shift | Key::Tab;
case '[': // F1 to F5 in tty

Loading…
Cancel
Save