mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
19f4d94ec6
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.
20 lines
374 B
Objective-C
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
|