Files
textmate/Applications/TextMate/src/GetURLScriptCommand.mm
2016-09-24 08:55:18 +02:00

14 lines
444 B
Plaintext

@interface GetURLScriptCommand : NSScriptCommand
@end
@implementation GetURLScriptCommand
- (id)performDefaultImplementation
{
NSString* urlString = [self directParameter];
if([urlString hasPrefix:@"txmt:"] && ![urlString hasPrefix:@"txmt://"])
urlString = [@"txmt://" stringByAppendingString:[urlString substringFromIndex:5]];
[NSApp sendAction:@selector(handleTxMtURL:) to:nil from:[NSURL URLWithString:urlString]];
return nil;
}
@end