diff options
author | Conrad Pankoff <deoxxa@fknsrs.biz> | 2019-08-18 11:57:10 +1000 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-08-18 07:36:23 +0200 |
commit | 36e3e7b75a284493ea2442f8f9ec8d5fa302b9ce (patch) | |
tree | add65a9b2ae44efa787834490d6ef19f23dedf4c /Shell/LineEditor.h | |
parent | 266b9cb6544faf1a631689cd899cfde4ac0a3c25 (diff) | |
download | serenity-36e3e7b75a284493ea2442f8f9ec8d5fa302b9ce.zip |
Shell: Support forward delete
Diffstat (limited to 'Shell/LineEditor.h')
-rw-r--r-- | Shell/LineEditor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Shell/LineEditor.h b/Shell/LineEditor.h index f7fd0c3e26..50a696b83c 100644 --- a/Shell/LineEditor.h +++ b/Shell/LineEditor.h @@ -32,6 +32,7 @@ private: Free, ExpectBracket, ExpectFinal, + ExpectTerminator, }; InputState m_state { InputState::Free }; }; |