Files
textmate/Applications/TextMate/src/GetURLScriptCommand.mm
Allan Odgaard 9894969e67 Initial commit
2012-08-09 16:25:56 +02:00

19 lines
566 B
Plaintext

#import <document/collection.h>
#import <oak/CocoaSTL.h>
#import <OakFoundation/NSArray Additions.h>
#import <io/path.h>
@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