Skip to content

Commit 226311a

Browse files
authored
Merge pull request #348 from macvim-dev/fix/macmeta
Fix macmeta for Greek layout
2 parents 79f9347 + 193dd55 commit 226311a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/MacVim/MMTextViewHelper.m

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,7 @@ - (void)keyDown:(NSEvent *)event
159159
// Note that this implies that 'mmta' (if enabled) breaks input methods
160160
// when the Alt key is held.
161161
if ((flags & NSAlternateKeyMask) && [mmta boolValue] && [unmod length] == 1
162-
&& [unmod characterAtIndex:0] > 0x20
163-
&& [unmod characterAtIndex:0] < 0x7f) {
162+
&& [unmod characterAtIndex:0] > 0x20) {
164163
ASLogDebug(@"MACMETA key, don't interpret it");
165164
string = unmod;
166165
} else if (imState && (flags & NSControlKeyMask)

0 commit comments

Comments
 (0)