Files
gitx/PBServicesController.h
T
Pieter de Bie 19f4d94ec6 Add a Complete SHA service
This adds a service bound to ⌘⇧7 that expands
any ref to its abbreviated SHA and its subject
line, much like ⌘C in the commit list does.
2008-10-27 17:40:46 +01:00

20 lines
374 B
Objective-C

//
// PBServicesController.h
// GitX
//
// Created by Pieter de Bie on 10/24/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface PBServicesController : NSObject {
}
- (NSString *)completeSHA1For:(NSString *)sha;
- (void)completeSha:(NSPasteboard *)pboard userData:(NSString *)userData error:(NSString **)error;
@end