FakeVim: don't ignore ESC while holding SHIFT

Change-Id: Iddd843353e582607d6acd0cddf0df6930f09f4b9
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: Lukas Holecek <hluk@email.cz>
This commit is contained in:
Daniel Langner
2016-09-30 19:43:50 +02:00
committed by Lukas Holecek
parent a223e59d85
commit 137a34b9ca

View File

@@ -1046,7 +1046,7 @@ public:
bool isEscape() const bool isEscape() const
{ {
return isKey(Key_Escape) || isKey(27) || isControl('c') return isKey(Key_Escape) || isShift(Key_Escape) || isKey(27) || isShift(27) || isControl('c')
|| isControl(Key_BracketLeft); || isControl(Key_BracketLeft);
} }