From 0b04d9ec35a8327f5ee734dc70e8b6b8ffa50152 Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Sun, 18 Mar 2018 09:26:28 +0100 Subject: [PATCH] Help: display EoF properly --- src/bindings.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bindings.cpp b/src/bindings.cpp index 51360bdb..831a2f59 100644 --- a/src/bindings.cpp +++ b/src/bindings.cpp @@ -314,6 +314,8 @@ std::wstring keyToWString(const NC::Key::Type key) result += L"Left"; else if (key == NC::Key::Right) result += L"Right"; + else if (key == NC::Key::EoF) + result += L"EoF"; else if (key >= NC::Key::F1 && key <= NC::Key::F9) { result += L"F";