forked from qt-creator/qt-creator
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:
committed by
Lukas Holecek
parent
a223e59d85
commit
137a34b9ca
@@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user