-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue 720: Spanish Keyboard Layout Accents
Accent characters are not handled correctly for the Spanish Keyboard Layout. TODO Adding tests only, not sure if these are correct... TODO Fix For Windows. Validate MacOS/Linux
- Loading branch information
Showing
6 changed files
with
129 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
#pragma once | ||
|
||
#include <QKeyEvent> | ||
#include <QString> | ||
|
||
// A class to hold test data. An event type/key/modifiers | ||
// as used in QKeyEvent and a matching Neovim input string. | ||
struct InputTest | ||
struct InputTest final | ||
{ | ||
QEvent::Type event_type; | ||
int key; | ||
Qt::KeyboardModifiers modifiers; | ||
QKeyEvent event; | ||
QString expected_input; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters