mirror of
https://github.com/textmate/textmate.git
synced 2026-04-06 03:01:29 -04:00
21 lines
686 B
Plaintext
21 lines
686 B
Plaintext
#import "ProjectsPreferences.h"
|
|
#import "Keys.h"
|
|
#import <OakAppKit/NSImage Additions.h>
|
|
|
|
@implementation ProjectsPreferences
|
|
- (id)init
|
|
{
|
|
if(self = [super initWithNibName:@"ProjectsPreferences" label:@"Projects" image:[NSImage imageNamed:@"Projects" inSameBundleAsClass:[self class]]])
|
|
{
|
|
self.defaultsProperties = [NSDictionary dictionaryWithObjectsAndKeys:
|
|
kUserDefaultsFoldersOnTopKey, @"foldersOnTop",
|
|
kUserDefaultsShowFileExtensionsKey, @"showFileExtensions",
|
|
kUserDefaultsExcludePatternKey, @"excludePattern",
|
|
kUserDefaultsIncludePatternKey, @"includePattern",
|
|
kUserDefaultsBinaryPatternKey, @"binaryPattern",
|
|
nil];
|
|
}
|
|
return self;
|
|
}
|
|
@end
|