mirror of
https://github.com/textmate/textmate.git
synced 2026-01-23 05:37:55 -05:00
We no longer require that the bundle identifier starts with ‘com.macromates’ instead the plug-in MUST set the TMPlugInAPIVersion key (in its Info.plist) to ‘2’ (the current API version).
16 lines
366 B
Objective-C
16 lines
366 B
Objective-C
@protocol TMPlugInController
|
|
- (CGFloat)version;
|
|
@end
|
|
|
|
@protocol TMPlugIn
|
|
@optional
|
|
- (id)initWithPlugInController:(id <TMPlugInController>)aController;
|
|
@end
|
|
|
|
@interface TMPlugInController : NSObject <TMPlugInController>
|
|
+ (TMPlugInController*)sharedInstance;
|
|
- (void)loadAllPlugIns:(id)sender;
|
|
- (CGFloat)version;
|
|
- (void)installPlugInAtPath:(NSString*)aPath;
|
|
@end
|