mirror of
https://github.com/textmate/textmate.git
synced 2026-01-20 20:27:59 -05:00
Add comments translating code points
This commit is contained in:
@@ -308,9 +308,9 @@ static id SafeObjectAtIndex (NSArray* array, NSUInteger index)
|
||||
{
|
||||
// this should be in the window controller, but there we need subclassing mojo to get key events
|
||||
std::string const keyStr = to_s(anEvent);
|
||||
if(keyStr == "~@\uF702")
|
||||
if(keyStr == "~@\uF702") // ⌥⌘⇠
|
||||
return [NSApp sendAction:@selector(selectPreviousTab:) to:nil from:self];
|
||||
else if(keyStr == "~@\uF703")
|
||||
else if(keyStr == "~@\uF703") // ⌥⌘⇢
|
||||
return [NSApp sendAction:@selector(selectNextTab:) to:nil from:self];
|
||||
return NO;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user