├── .gitignore ├── Classes ├── App.h ├── App.m ├── NSURL+L0URLParsing.h └── NSURL+L0URLParsing.m ├── English.lproj ├── InfoPlist.strings └── MainMenu.xib ├── Info.plist ├── README.md ├── emacs-handler.xcodeproj └── project.pbxproj ├── main.m └── version.plist /.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | *.xcodeproj/*.pbxuser 3 | *.xcodeproj/*.perspectivev3 4 | *.xcodeproj/TemplateIcon.icns 5 | -------------------------------------------------------------------------------- /Classes/App.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface App : NSObject { 4 | NSString *path; 5 | 6 | IBOutlet NSWindow *prefPanel; 7 | IBOutlet NSTextField *textField; 8 | } 9 | 10 | -(IBAction)showPrefPanel:(id)sender; 11 | -(IBAction)applyChange:(id)sender; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Classes/App.m: -------------------------------------------------------------------------------- 1 | #import "App.h" 2 | 3 | #import "NSURL+L0URLParsing.h" 4 | 5 | @implementation App 6 | 7 | -(void)awakeFromNib { 8 | NSUserDefaults *d = [NSUserDefaults standardUserDefaults]; 9 | path = [d objectForKey:@"path"]; 10 | 11 | NSAppleEventManager *appleEventManager = [NSAppleEventManager sharedAppleEventManager]; 12 | [appleEventManager setEventHandler:self andSelector:@selector(handleGetURLEvent:withReplyEvent:) forEventClass:kInternetEventClass andEventID:kAEGetURL]; 13 | } 14 | 15 | -(void)handleGetURLEvent:(NSAppleEventDescriptor *)event withReplyEvent:(NSAppleEventDescriptor *)replyEvent { 16 | if (nil == path) return; 17 | 18 | // emacs://open/?url=file://~/.bash_profile&line=11&column=2 19 | NSURL *url = [NSURL URLWithString:[[event paramDescriptorForKeyword:keyDirectObject] stringValue]]; 20 | 21 | if (url && [[url host] isEqualToString:@"open"]) { 22 | NSDictionary *params = [url dictionaryByDecodingQueryString]; 23 | NSURL *file_url = [NSURL URLWithString:[params objectForKey:@"url"]]; 24 | 25 | if (file_url && [[file_url scheme] isEqualToString:@"file"]) { 26 | NSString *file = [file_url path]; 27 | NSString *line = [params objectForKey:@"line"]; 28 | NSString *column = [params objectForKey:@"column"]; 29 | 30 | if (file) { 31 | NSTask *task = [[NSTask alloc] init]; 32 | [task setLaunchPath:path]; 33 | [task setArguments:[NSArray arrayWithObjects:@"-n", [NSString stringWithFormat:@"+%d:%d", [line integerValue], [column integerValue]], file, nil]]; 34 | [task launch]; 35 | [task release]; 36 | } 37 | } 38 | } 39 | 40 | if (![prefPanel isVisible]) { 41 | [NSApp terminate:self]; 42 | } 43 | } 44 | 45 | -(IBAction)showPrefPanel:(id)sender { 46 | if (path) { 47 | [textField setStringValue:path]; 48 | } 49 | else { 50 | [textField setStringValue:@""]; 51 | } 52 | [prefPanel makeKeyAndOrderFront:nil]; 53 | } 54 | 55 | -(IBAction)applyChange:(id)sender { 56 | path = [textField stringValue]; 57 | 58 | if (path) { 59 | NSUserDefaults *d = [NSUserDefaults standardUserDefaults]; 60 | [d setObject:path forKey:@"path"]; 61 | } 62 | 63 | [prefPanel orderOut:nil]; 64 | } 65 | 66 | @end 67 | -------------------------------------------------------------------------------- /Classes/NSURL+L0URLParsing.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSURL_L0URLParsing.h 3 | // Diceshaker 4 | // 5 | // Created by ∞ on 11/02/09. 6 | // Copyright 2009 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface NSURL (L0URLParsing) 13 | 14 | - (NSDictionary*) dictionaryByDecodingQueryString; 15 | 16 | @end 17 | 18 | @interface NSDictionary (L0URLParsing) 19 | 20 | - (NSString*) queryString; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /Classes/NSURL+L0URLParsing.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSURL_L0URLParsing.m 3 | // Diceshaker 4 | // 5 | // Created by ∞ on 11/02/09. 6 | // Copyright 2009 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import "NSURL+L0URLParsing.h" 10 | 11 | 12 | @implementation NSURL (L0URLParsing) 13 | 14 | - (NSDictionary*) dictionaryByDecodingQueryString; 15 | { 16 | NSString* query = [self query]; 17 | if (!query) { 18 | NSString* resSpecifier = [self resourceSpecifier]; 19 | NSRange r = [resSpecifier rangeOfString:@"?"]; 20 | 21 | if (r.location == NSNotFound || r.location == [resSpecifier length] - 1) 22 | return [NSDictionary dictionary]; 23 | else 24 | query = [resSpecifier substringFromIndex:r.location + 1]; 25 | } 26 | 27 | NSArray* keyValuePairs = [query componentsSeparatedByString:@"&"]; 28 | 29 | NSMutableDictionary* dict = [NSMutableDictionary dictionary]; 30 | for (NSString* pair in keyValuePairs) { 31 | NSArray* splitPair = [pair componentsSeparatedByString:@"="]; 32 | NSAssert([splitPair count] > 0, @"At least one element out of componentsSeparatedByString:"); 33 | NSString* key = [splitPair objectAtIndex:0]; 34 | 35 | NSString* value; 36 | if ([splitPair count] > 2) { 37 | NSMutableArray* splitPairWithoutKey = [NSMutableArray arrayWithArray:splitPair]; 38 | [splitPairWithoutKey removeObjectAtIndex:0]; 39 | value = [splitPairWithoutKey componentsJoinedByString:@"="]; 40 | } else if ([splitPair count] == 2) 41 | value = [splitPair objectAtIndex:1]; 42 | else 43 | value = nil; 44 | 45 | if (value) 46 | [dict setObject:[value stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding] forKey:[key stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; 47 | else 48 | [dict setObject:[NSNull null] forKey:[key stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; 49 | 50 | } 51 | 52 | return dict; 53 | } 54 | 55 | @end 56 | 57 | @implementation NSDictionary (L0URLParsing) 58 | 59 | - (NSString*) queryString; 60 | { 61 | NSMutableString* queryString = [NSMutableString string]; 62 | 63 | BOOL first = YES; 64 | for (NSString* key in self) { 65 | if (!first) 66 | [queryString appendString:@"&"]; 67 | [queryString appendString:[key stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; 68 | 69 | id value = [self objectForKey:key]; 70 | if (![value isEqual:[NSNull null]]) { 71 | [queryString appendString:@"="]; 72 | [queryString appendString:[value stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; 73 | } 74 | 75 | first = NO; 76 | } 77 | 78 | return queryString; 79 | } 80 | 81 | @end 82 | -------------------------------------------------------------------------------- /English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typester/emacs-handler/eebf3c4c60e7f02bc48c6e211d53683fff708e71/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /English.lproj/MainMenu.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1050 5 | 9L30 6 | 680 7 | 949.54 8 | 353.00 9 | 10 | YES 11 | 12 | 13 | 14 | 15 | YES 16 | com.apple.InterfaceBuilderKit 17 | com.apple.InterfaceBuilder.CocoaPlugin 18 | 19 | 20 | YES 21 | 22 | YES 23 | 24 | 25 | YES 26 | 27 | 28 | 29 | YES 30 | 31 | NSApplication 32 | 33 | 34 | FirstResponder 35 | 36 | 37 | NSApplication 38 | 39 | 40 | AMainMenu 41 | 42 | YES 43 | 44 | 45 | EmacsHandler 46 | 47 | 1048576 48 | 2147483647 49 | 50 | NSImage 51 | NSMenuCheckmark 52 | 53 | 54 | NSImage 55 | NSMenuMixedState 56 | 57 | submenuAction: 58 | 59 | hoge 60 | 61 | YES 62 | 63 | 64 | About EmacsHandler 65 | 66 | 2147483647 67 | 68 | 69 | 70 | 71 | 72 | YES 73 | YES 74 | 75 | 76 | 1048576 77 | 2147483647 78 | 79 | 80 | 81 | 82 | 83 | UHJlZmVyZW5jZXPigKY 84 | , 85 | 1048576 86 | 2147483647 87 | 88 | 89 | 90 | 91 | 92 | YES 93 | YES 94 | 95 | 96 | 1048576 97 | 2147483647 98 | 99 | 100 | 101 | 102 | 103 | Services 104 | 105 | 1048576 106 | 2147483647 107 | 108 | 109 | submenuAction: 110 | 111 | Services 112 | 113 | YES 114 | 115 | _NSServicesMenu 116 | 117 | 118 | 119 | 120 | YES 121 | YES 122 | 123 | 124 | 1048576 125 | 2147483647 126 | 127 | 128 | 129 | 130 | 131 | Hide EmacsHandler 132 | h 133 | 1048576 134 | 2147483647 135 | 136 | 137 | 138 | 139 | 140 | Hide Others 141 | h 142 | 1572864 143 | 2147483647 144 | 145 | 146 | 147 | 148 | 149 | Show All 150 | 151 | 1048576 152 | 2147483647 153 | 154 | 155 | 156 | 157 | 158 | YES 159 | YES 160 | 161 | 162 | 1048576 163 | 2147483647 164 | 165 | 166 | 167 | 168 | 169 | Quit 170 | q 171 | 1048576 172 | 2147483647 173 | 174 | 175 | 176 | 177 | _NSAppleMenu 178 | 179 | 180 | 181 | 182 | File 183 | 184 | 1048576 185 | 2147483647 186 | 187 | 188 | submenuAction: 189 | 190 | File 191 | 192 | YES 193 | 194 | 195 | New 196 | n 197 | 1048576 198 | 2147483647 199 | 200 | 201 | 202 | 203 | 204 | T3BlbuKApg 205 | o 206 | 1048576 207 | 2147483647 208 | 209 | 210 | 211 | 212 | 213 | Open Recent 214 | 215 | 1048576 216 | 2147483647 217 | 218 | 219 | submenuAction: 220 | 221 | Open Recent 222 | 223 | YES 224 | 225 | 226 | Clear Menu 227 | 228 | 1048576 229 | 2147483647 230 | 231 | 232 | 233 | 234 | _NSRecentDocumentsMenu 235 | 236 | 237 | 238 | 239 | YES 240 | YES 241 | 242 | 243 | 1048576 244 | 2147483647 245 | 246 | 247 | 248 | 249 | 250 | Close 251 | w 252 | 1048576 253 | 2147483647 254 | 255 | 256 | 257 | 258 | 259 | Save 260 | s 261 | 1048576 262 | 2147483647 263 | 264 | 265 | 266 | 267 | 268 | U2F2ZSBBc+KApg 269 | S 270 | 1179648 271 | 2147483647 272 | 273 | 274 | 275 | 276 | 277 | Revert to Saved 278 | 279 | 2147483647 280 | 281 | 282 | 283 | 284 | 285 | YES 286 | YES 287 | 288 | 289 | 1048576 290 | 2147483647 291 | 292 | 293 | 294 | 295 | 296 | Page Setup... 297 | P 298 | 1179648 299 | 2147483647 300 | 301 | 302 | 303 | 304 | 305 | 306 | UHJpbnTigKY 307 | p 308 | 1048576 309 | 2147483647 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | Edit 319 | 320 | 1048576 321 | 2147483647 322 | 323 | 324 | submenuAction: 325 | 326 | Edit 327 | 328 | YES 329 | 330 | 331 | Undo 332 | z 333 | 1048576 334 | 2147483647 335 | 336 | 337 | 338 | 339 | 340 | Redo 341 | Z 342 | 1179648 343 | 2147483647 344 | 345 | 346 | 347 | 348 | 349 | YES 350 | YES 351 | 352 | 353 | 1048576 354 | 2147483647 355 | 356 | 357 | 358 | 359 | 360 | Cut 361 | x 362 | 1048576 363 | 2147483647 364 | 365 | 366 | 367 | 368 | 369 | Copy 370 | c 371 | 1048576 372 | 2147483647 373 | 374 | 375 | 376 | 377 | 378 | Paste 379 | v 380 | 1048576 381 | 2147483647 382 | 383 | 384 | 385 | 386 | 387 | Delete 388 | 389 | 1048576 390 | 2147483647 391 | 392 | 393 | 394 | 395 | 396 | Select All 397 | a 398 | 1048576 399 | 2147483647 400 | 401 | 402 | 403 | 404 | 405 | YES 406 | YES 407 | 408 | 409 | 1048576 410 | 2147483647 411 | 412 | 413 | 414 | 415 | 416 | Find 417 | 418 | 1048576 419 | 2147483647 420 | 421 | 422 | submenuAction: 423 | 424 | Find 425 | 426 | YES 427 | 428 | 429 | RmluZOKApg 430 | f 431 | 1048576 432 | 2147483647 433 | 434 | 435 | 1 436 | 437 | 438 | 439 | Find Next 440 | g 441 | 1048576 442 | 2147483647 443 | 444 | 445 | 2 446 | 447 | 448 | 449 | Find Previous 450 | G 451 | 1179648 452 | 2147483647 453 | 454 | 455 | 3 456 | 457 | 458 | 459 | Use Selection for Find 460 | e 461 | 1048576 462 | 2147483647 463 | 464 | 465 | 7 466 | 467 | 468 | 469 | Jump to Selection 470 | j 471 | 1048576 472 | 2147483647 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | Spelling and Grammar 482 | 483 | 1048576 484 | 2147483647 485 | 486 | 487 | submenuAction: 488 | 489 | Spelling and Grammar 490 | 491 | YES 492 | 493 | 494 | U2hvdyBTcGVsbGluZ+KApg 495 | : 496 | 1048576 497 | 2147483647 498 | 499 | 500 | 501 | 502 | 503 | Check Spelling 504 | ; 505 | 1048576 506 | 2147483647 507 | 508 | 509 | 510 | 511 | 512 | Check Spelling While Typing 513 | 514 | 1048576 515 | 2147483647 516 | 517 | 518 | 519 | 520 | 521 | Check Grammar With Spelling 522 | 523 | 1048576 524 | 2147483647 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | Substitutions 534 | 535 | 1048576 536 | 2147483647 537 | 538 | 539 | submenuAction: 540 | 541 | Substitutions 542 | 543 | YES 544 | 545 | 546 | Smart Copy/Paste 547 | f 548 | 1048576 549 | 2147483647 550 | 551 | 552 | 1 553 | 554 | 555 | 556 | Smart Quotes 557 | g 558 | 1048576 559 | 2147483647 560 | 561 | 562 | 2 563 | 564 | 565 | 566 | Smart Links 567 | G 568 | 1179648 569 | 2147483647 570 | 571 | 572 | 3 573 | 574 | 575 | 576 | 577 | 578 | 579 | Speech 580 | 581 | 1048576 582 | 2147483647 583 | 584 | 585 | submenuAction: 586 | 587 | Speech 588 | 589 | YES 590 | 591 | 592 | Start Speaking 593 | 594 | 1048576 595 | 2147483647 596 | 597 | 598 | 599 | 600 | 601 | Stop Speaking 602 | 603 | 1048576 604 | 2147483647 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | Format 617 | 618 | 2147483647 619 | 620 | 621 | submenuAction: 622 | 623 | Format 624 | 625 | YES 626 | 627 | 628 | Font 629 | 630 | 2147483647 631 | 632 | 633 | submenuAction: 634 | 635 | Font 636 | 637 | YES 638 | 639 | 640 | Show Fonts 641 | t 642 | 1048576 643 | 2147483647 644 | 645 | 646 | 647 | 648 | 649 | Bold 650 | b 651 | 1048576 652 | 2147483647 653 | 654 | 655 | 2 656 | 657 | 658 | 659 | Italic 660 | i 661 | 1048576 662 | 2147483647 663 | 664 | 665 | 1 666 | 667 | 668 | 669 | Underline 670 | u 671 | 1048576 672 | 2147483647 673 | 674 | 675 | 676 | 677 | 678 | YES 679 | YES 680 | 681 | 682 | 2147483647 683 | 684 | 685 | 686 | 687 | 688 | Bigger 689 | + 690 | 1048576 691 | 2147483647 692 | 693 | 694 | 3 695 | 696 | 697 | 698 | Smaller 699 | - 700 | 1048576 701 | 2147483647 702 | 703 | 704 | 4 705 | 706 | 707 | 708 | YES 709 | YES 710 | 711 | 712 | 2147483647 713 | 714 | 715 | 716 | 717 | 718 | Kern 719 | 720 | 2147483647 721 | 722 | 723 | submenuAction: 724 | 725 | Kern 726 | 727 | YES 728 | 729 | 730 | Use Default 731 | 732 | 2147483647 733 | 734 | 735 | 736 | 737 | 738 | Use None 739 | 740 | 2147483647 741 | 742 | 743 | 744 | 745 | 746 | Tighten 747 | 748 | 2147483647 749 | 750 | 751 | 752 | 753 | 754 | Loosen 755 | 756 | 2147483647 757 | 758 | 759 | 760 | 761 | 762 | 763 | 764 | 765 | Ligature 766 | 767 | 2147483647 768 | 769 | 770 | submenuAction: 771 | 772 | Ligature 773 | 774 | YES 775 | 776 | 777 | Use Default 778 | 779 | 2147483647 780 | 781 | 782 | 783 | 784 | 785 | Use None 786 | 787 | 2147483647 788 | 789 | 790 | 791 | 792 | 793 | Use All 794 | 795 | 2147483647 796 | 797 | 798 | 799 | 800 | 801 | 802 | 803 | 804 | Baseline 805 | 806 | 2147483647 807 | 808 | 809 | submenuAction: 810 | 811 | Baseline 812 | 813 | YES 814 | 815 | 816 | Use Default 817 | 818 | 2147483647 819 | 820 | 821 | 822 | 823 | 824 | Superscript 825 | 826 | 2147483647 827 | 828 | 829 | 830 | 831 | 832 | Subscript 833 | 834 | 2147483647 835 | 836 | 837 | 838 | 839 | 840 | Raise 841 | 842 | 2147483647 843 | 844 | 845 | 846 | 847 | 848 | Lower 849 | 850 | 2147483647 851 | 852 | 853 | 854 | 855 | 856 | 857 | 858 | 859 | YES 860 | YES 861 | 862 | 863 | 2147483647 864 | 865 | 866 | 867 | 868 | 869 | Show Colors 870 | C 871 | 1048576 872 | 2147483647 873 | 874 | 875 | 876 | 877 | 878 | YES 879 | YES 880 | 881 | 882 | 2147483647 883 | 884 | 885 | 886 | 887 | 888 | Copy Style 889 | c 890 | 1572864 891 | 2147483647 892 | 893 | 894 | 895 | 896 | 897 | Paste Style 898 | v 899 | 1572864 900 | 2147483647 901 | 902 | 903 | 904 | 905 | _NSFontMenu 906 | 907 | 908 | 909 | 910 | Text 911 | 912 | 2147483647 913 | 914 | 915 | submenuAction: 916 | 917 | Text 918 | 919 | YES 920 | 921 | 922 | Align Left 923 | { 924 | 1048576 925 | 2147483647 926 | 927 | 928 | 929 | 930 | 931 | Center 932 | | 933 | 1048576 934 | 2147483647 935 | 936 | 937 | 938 | 939 | 940 | Justify 941 | 942 | 2147483647 943 | 944 | 945 | 946 | 947 | 948 | Align Right 949 | } 950 | 1048576 951 | 2147483647 952 | 953 | 954 | 955 | 956 | 957 | YES 958 | YES 959 | 960 | 961 | 2147483647 962 | 963 | 964 | 965 | 966 | 967 | Show Ruler 968 | 969 | 2147483647 970 | 971 | 972 | 973 | 974 | 975 | Copy Ruler 976 | c 977 | 1310720 978 | 2147483647 979 | 980 | 981 | 982 | 983 | 984 | Paste Ruler 985 | v 986 | 1310720 987 | 2147483647 988 | 989 | 990 | 991 | 992 | 993 | 994 | 995 | 996 | 997 | 998 | 999 | View 1000 | 1001 | 1048576 1002 | 2147483647 1003 | 1004 | 1005 | submenuAction: 1006 | 1007 | View 1008 | 1009 | YES 1010 | 1011 | 1012 | Show Toolbar 1013 | t 1014 | 1572864 1015 | 2147483647 1016 | 1017 | 1018 | 1019 | 1020 | 1021 | Q3VzdG9taXplIFRvb2xiYXLigKY 1022 | 1023 | 1048576 1024 | 2147483647 1025 | 1026 | 1027 | 1028 | 1029 | 1030 | 1031 | 1032 | 1033 | Window 1034 | 1035 | 1048576 1036 | 2147483647 1037 | 1038 | 1039 | submenuAction: 1040 | 1041 | Window 1042 | 1043 | YES 1044 | 1045 | 1046 | Minimize 1047 | m 1048 | 1048576 1049 | 2147483647 1050 | 1051 | 1052 | 1053 | 1054 | 1055 | Zoom 1056 | 1057 | 1048576 1058 | 2147483647 1059 | 1060 | 1061 | 1062 | 1063 | 1064 | YES 1065 | YES 1066 | 1067 | 1068 | 1048576 1069 | 2147483647 1070 | 1071 | 1072 | 1073 | 1074 | 1075 | Bring All to Front 1076 | 1077 | 1048576 1078 | 2147483647 1079 | 1080 | 1081 | 1082 | 1083 | _NSWindowsMenu 1084 | 1085 | 1086 | 1087 | 1088 | Help 1089 | 1090 | 1048576 1091 | 2147483647 1092 | 1093 | 1094 | submenuAction: 1095 | 1096 | Help 1097 | 1098 | YES 1099 | 1100 | 1101 | NewApplication Help 1102 | ? 1103 | 1048576 1104 | 2147483647 1105 | 1106 | 1107 | 1108 | 1109 | 1110 | 1111 | 1112 | _NSMainMenu 1113 | 1114 | 1115 | 15 1116 | 2 1117 | {{335, 520}, {480, 230}} 1118 | 1946157056 1119 | Preferences 1120 | NSWindow 1121 | 1122 | {3.40282e+38, 3.40282e+38} 1123 | 1124 | 1125 | 256 1126 | 1127 | YES 1128 | 1129 | 1130 | 268 1131 | {{17, 193}, {141, 17}} 1132 | 1133 | YES 1134 | 1135 | 68288064 1136 | 272630784 1137 | Path to emacsclient: 1138 | 1139 | LucidaGrande 1140 | 1.300000e+01 1141 | 1044 1142 | 1143 | 1144 | 1145 | 6 1146 | System 1147 | controlColor 1148 | 1149 | 3 1150 | MC42NjY2NjY2OQA 1151 | 1152 | 1153 | 1154 | 6 1155 | System 1156 | controlTextColor 1157 | 1158 | 3 1159 | MAA 1160 | 1161 | 1162 | 1163 | 1164 | 1165 | 1166 | 268 1167 | {{163, 188}, {297, 22}} 1168 | 1169 | YES 1170 | 1171 | -1804468671 1172 | 272630784 1173 | 1174 | 1175 | 1176 | YES 1177 | 1178 | 6 1179 | System 1180 | textBackgroundColor 1181 | 1182 | 3 1183 | MQA 1184 | 1185 | 1186 | 1187 | 6 1188 | System 1189 | textColor 1190 | 1191 | 1192 | 1193 | 1194 | 1195 | 1196 | 268 1197 | {{370, 12}, {96, 32}} 1198 | 1199 | YES 1200 | 1201 | -2080244224 1202 | 134217728 1203 | Apply 1204 | 1205 | 1206 | -2038284033 1207 | 129 1208 | 1209 | 1210 | 200 1211 | 25 1212 | 1213 | 1214 | 1215 | 1216 | 268 1217 | {{17, 157}, {353, 17}} 1218 | 1219 | YES 1220 | 1221 | 68288064 1222 | 272630784 1223 | Tk9URTogVGhpcyBpcyBwYXRoIHRvICJlbWFjc2NsaWVudCIgbm90IHRvICJFbWFjcy5hcHAiLg 1224 | 1225 | 1226 | 1227 | 1228 | 1229 | 1230 | 1231 | 1232 | 268 1233 | {{17, 112}, {446, 37}} 1234 | 1235 | YES 1236 | 1237 | 67239424 1238 | 272629760 1239 | Rm9yIENhcmJvbkVtYWNzLCBpdCdzIGxvY2F0ZWQgYXQgL0FwcGxpY2F0aW9ucy9FbWFjcy5hcHAvQ29u 1240 | dGVudHMvTWFjT1MvYmluL2VtYWNzY2xpZW50A 1241 | 1242 | LucidaGrande 1243 | 1.300000e+01 1244 | 16 1245 | 1246 | 1247 | 1248 | 1249 | 1250 | 1251 | 1252 | 1253 | 268 1254 | {{17, 70}, {446, 34}} 1255 | 1256 | YES 1257 | 1258 | 67239424 1259 | 272629760 1260 | And of course, you should run your emacs in server-mode. M-x server-start or (server-start) in your .emacs 1261 | 1262 | 1263 | 1264 | 1265 | 1266 | 1267 | 1268 | {480, 230} 1269 | 1270 | 1271 | {{0, 0}, {1440, 878}} 1272 | {3.40282e+38, 3.40282e+38} 1273 | 1274 | 1275 | NSFontManager 1276 | 1277 | 1278 | App 1279 | 1280 | 1281 | 1282 | 1283 | YES 1284 | 1285 | 1286 | performMiniaturize: 1287 | 1288 | 1289 | 1290 | 37 1291 | 1292 | 1293 | 1294 | arrangeInFront: 1295 | 1296 | 1297 | 1298 | 39 1299 | 1300 | 1301 | 1302 | print: 1303 | 1304 | 1305 | 1306 | 86 1307 | 1308 | 1309 | 1310 | runPageLayout: 1311 | 1312 | 1313 | 1314 | 87 1315 | 1316 | 1317 | 1318 | clearRecentDocuments: 1319 | 1320 | 1321 | 1322 | 127 1323 | 1324 | 1325 | 1326 | orderFrontStandardAboutPanel: 1327 | 1328 | 1329 | 1330 | 142 1331 | 1332 | 1333 | 1334 | performClose: 1335 | 1336 | 1337 | 1338 | 193 1339 | 1340 | 1341 | 1342 | toggleContinuousSpellChecking: 1343 | 1344 | 1345 | 1346 | 222 1347 | 1348 | 1349 | 1350 | undo: 1351 | 1352 | 1353 | 1354 | 223 1355 | 1356 | 1357 | 1358 | copy: 1359 | 1360 | 1361 | 1362 | 224 1363 | 1364 | 1365 | 1366 | checkSpelling: 1367 | 1368 | 1369 | 1370 | 225 1371 | 1372 | 1373 | 1374 | paste: 1375 | 1376 | 1377 | 1378 | 226 1379 | 1380 | 1381 | 1382 | stopSpeaking: 1383 | 1384 | 1385 | 1386 | 227 1387 | 1388 | 1389 | 1390 | cut: 1391 | 1392 | 1393 | 1394 | 228 1395 | 1396 | 1397 | 1398 | showGuessPanel: 1399 | 1400 | 1401 | 1402 | 230 1403 | 1404 | 1405 | 1406 | redo: 1407 | 1408 | 1409 | 1410 | 231 1411 | 1412 | 1413 | 1414 | selectAll: 1415 | 1416 | 1417 | 1418 | 232 1419 | 1420 | 1421 | 1422 | startSpeaking: 1423 | 1424 | 1425 | 1426 | 233 1427 | 1428 | 1429 | 1430 | delete: 1431 | 1432 | 1433 | 1434 | 235 1435 | 1436 | 1437 | 1438 | performZoom: 1439 | 1440 | 1441 | 1442 | 240 1443 | 1444 | 1445 | 1446 | performFindPanelAction: 1447 | 1448 | 1449 | 1450 | 241 1451 | 1452 | 1453 | 1454 | centerSelectionInVisibleArea: 1455 | 1456 | 1457 | 1458 | 245 1459 | 1460 | 1461 | 1462 | toggleGrammarChecking: 1463 | 1464 | 1465 | 1466 | 347 1467 | 1468 | 1469 | 1470 | toggleSmartInsertDelete: 1471 | 1472 | 1473 | 1474 | 355 1475 | 1476 | 1477 | 1478 | toggleAutomaticQuoteSubstitution: 1479 | 1480 | 1481 | 1482 | 356 1483 | 1484 | 1485 | 1486 | toggleAutomaticLinkDetection: 1487 | 1488 | 1489 | 1490 | 357 1491 | 1492 | 1493 | 1494 | showHelp: 1495 | 1496 | 1497 | 1498 | 360 1499 | 1500 | 1501 | 1502 | saveDocument: 1503 | 1504 | 1505 | 1506 | 362 1507 | 1508 | 1509 | 1510 | saveDocumentAs: 1511 | 1512 | 1513 | 1514 | 363 1515 | 1516 | 1517 | 1518 | revertDocumentToSaved: 1519 | 1520 | 1521 | 1522 | 364 1523 | 1524 | 1525 | 1526 | runToolbarCustomizationPalette: 1527 | 1528 | 1529 | 1530 | 365 1531 | 1532 | 1533 | 1534 | toggleToolbarShown: 1535 | 1536 | 1537 | 1538 | 366 1539 | 1540 | 1541 | 1542 | hide: 1543 | 1544 | 1545 | 1546 | 367 1547 | 1548 | 1549 | 1550 | hideOtherApplications: 1551 | 1552 | 1553 | 1554 | 368 1555 | 1556 | 1557 | 1558 | unhideAllApplications: 1559 | 1560 | 1561 | 1562 | 370 1563 | 1564 | 1565 | 1566 | newDocument: 1567 | 1568 | 1569 | 1570 | 373 1571 | 1572 | 1573 | 1574 | openDocument: 1575 | 1576 | 1577 | 1578 | 374 1579 | 1580 | 1581 | 1582 | addFontTrait: 1583 | 1584 | 1585 | 1586 | 421 1587 | 1588 | 1589 | 1590 | addFontTrait: 1591 | 1592 | 1593 | 1594 | 422 1595 | 1596 | 1597 | 1598 | modifyFont: 1599 | 1600 | 1601 | 1602 | 423 1603 | 1604 | 1605 | 1606 | orderFrontFontPanel: 1607 | 1608 | 1609 | 1610 | 424 1611 | 1612 | 1613 | 1614 | modifyFont: 1615 | 1616 | 1617 | 1618 | 425 1619 | 1620 | 1621 | 1622 | raiseBaseline: 1623 | 1624 | 1625 | 1626 | 426 1627 | 1628 | 1629 | 1630 | lowerBaseline: 1631 | 1632 | 1633 | 1634 | 427 1635 | 1636 | 1637 | 1638 | copyFont: 1639 | 1640 | 1641 | 1642 | 428 1643 | 1644 | 1645 | 1646 | subscript: 1647 | 1648 | 1649 | 1650 | 429 1651 | 1652 | 1653 | 1654 | superscript: 1655 | 1656 | 1657 | 1658 | 430 1659 | 1660 | 1661 | 1662 | tightenKerning: 1663 | 1664 | 1665 | 1666 | 431 1667 | 1668 | 1669 | 1670 | underline: 1671 | 1672 | 1673 | 1674 | 432 1675 | 1676 | 1677 | 1678 | orderFrontColorPanel: 1679 | 1680 | 1681 | 1682 | 433 1683 | 1684 | 1685 | 1686 | useAllLigatures: 1687 | 1688 | 1689 | 1690 | 434 1691 | 1692 | 1693 | 1694 | loosenKerning: 1695 | 1696 | 1697 | 1698 | 435 1699 | 1700 | 1701 | 1702 | pasteFont: 1703 | 1704 | 1705 | 1706 | 436 1707 | 1708 | 1709 | 1710 | unscript: 1711 | 1712 | 1713 | 1714 | 437 1715 | 1716 | 1717 | 1718 | useStandardKerning: 1719 | 1720 | 1721 | 1722 | 438 1723 | 1724 | 1725 | 1726 | useStandardLigatures: 1727 | 1728 | 1729 | 1730 | 439 1731 | 1732 | 1733 | 1734 | turnOffLigatures: 1735 | 1736 | 1737 | 1738 | 440 1739 | 1740 | 1741 | 1742 | turnOffKerning: 1743 | 1744 | 1745 | 1746 | 441 1747 | 1748 | 1749 | 1750 | alignLeft: 1751 | 1752 | 1753 | 1754 | 442 1755 | 1756 | 1757 | 1758 | alignJustified: 1759 | 1760 | 1761 | 1762 | 443 1763 | 1764 | 1765 | 1766 | copyRuler: 1767 | 1768 | 1769 | 1770 | 444 1771 | 1772 | 1773 | 1774 | alignCenter: 1775 | 1776 | 1777 | 1778 | 445 1779 | 1780 | 1781 | 1782 | toggleRuler: 1783 | 1784 | 1785 | 1786 | 446 1787 | 1788 | 1789 | 1790 | alignRight: 1791 | 1792 | 1793 | 1794 | 447 1795 | 1796 | 1797 | 1798 | pasteRuler: 1799 | 1800 | 1801 | 1802 | 448 1803 | 1804 | 1805 | 1806 | terminate: 1807 | 1808 | 1809 | 1810 | 449 1811 | 1812 | 1813 | 1814 | delegate 1815 | 1816 | 1817 | 1818 | 452 1819 | 1820 | 1821 | 1822 | showPrefPanel: 1823 | 1824 | 1825 | 1826 | 478 1827 | 1828 | 1829 | 1830 | prefPanel 1831 | 1832 | 1833 | 1834 | 479 1835 | 1836 | 1837 | 1838 | textField 1839 | 1840 | 1841 | 1842 | 480 1843 | 1844 | 1845 | 1846 | applyChange: 1847 | 1848 | 1849 | 1850 | 481 1851 | 1852 | 1853 | 1854 | 1855 | YES 1856 | 1857 | 0 1858 | 1859 | YES 1860 | 1861 | 1862 | 1863 | 1864 | 1865 | -2 1866 | 1867 | 1868 | RmlsZSdzIE93bmVyA 1869 | 1870 | 1871 | -1 1872 | 1873 | 1874 | First Responder 1875 | 1876 | 1877 | -3 1878 | 1879 | 1880 | Application 1881 | 1882 | 1883 | 29 1884 | 1885 | 1886 | YES 1887 | 1888 | 1889 | 1890 | 1891 | 1892 | 1893 | 1894 | 1895 | 1896 | MainMenu 1897 | 1898 | 1899 | 19 1900 | 1901 | 1902 | YES 1903 | 1904 | 1905 | 1906 | 1907 | 1908 | 56 1909 | 1910 | 1911 | YES 1912 | 1913 | 1914 | 1915 | 1916 | 1917 | 103 1918 | 1919 | 1920 | YES 1921 | 1922 | 1923 | 1924 | 1 1925 | 1926 | 1927 | 217 1928 | 1929 | 1930 | YES 1931 | 1932 | 1933 | 1934 | 1935 | 1936 | 83 1937 | 1938 | 1939 | YES 1940 | 1941 | 1942 | 1943 | 1944 | 1945 | 81 1946 | 1947 | 1948 | YES 1949 | 1950 | 1951 | 1952 | 1953 | 1954 | 1955 | 1956 | 1957 | 1958 | 1959 | 1960 | 1961 | 1962 | 1963 | 1964 | 75 1965 | 1966 | 1967 | 3 1968 | 1969 | 1970 | 80 1971 | 1972 | 1973 | 8 1974 | 1975 | 1976 | 78 1977 | 1978 | 1979 | 6 1980 | 1981 | 1982 | 72 1983 | 1984 | 1985 | 1986 | 1987 | 82 1988 | 1989 | 1990 | 9 1991 | 1992 | 1993 | 124 1994 | 1995 | 1996 | YES 1997 | 1998 | 1999 | 2000 | 2001 | 2002 | 77 2003 | 2004 | 2005 | 5 2006 | 2007 | 2008 | 73 2009 | 2010 | 2011 | 1 2012 | 2013 | 2014 | 79 2015 | 2016 | 2017 | 7 2018 | 2019 | 2020 | 112 2021 | 2022 | 2023 | 10 2024 | 2025 | 2026 | 74 2027 | 2028 | 2029 | 2 2030 | 2031 | 2032 | 125 2033 | 2034 | 2035 | YES 2036 | 2037 | 2038 | 2039 | 2040 | 2041 | 126 2042 | 2043 | 2044 | 2045 | 2046 | 205 2047 | 2048 | 2049 | YES 2050 | 2051 | 2052 | 2053 | 2054 | 2055 | 2056 | 2057 | 2058 | 2059 | 2060 | 2061 | 2062 | 2063 | 2064 | 2065 | 2066 | 2067 | 202 2068 | 2069 | 2070 | 2071 | 2072 | 198 2073 | 2074 | 2075 | 2076 | 2077 | 207 2078 | 2079 | 2080 | 2081 | 2082 | 214 2083 | 2084 | 2085 | 2086 | 2087 | 199 2088 | 2089 | 2090 | 2091 | 2092 | 203 2093 | 2094 | 2095 | 2096 | 2097 | 197 2098 | 2099 | 2100 | 2101 | 2102 | 206 2103 | 2104 | 2105 | 2106 | 2107 | 215 2108 | 2109 | 2110 | 2111 | 2112 | 218 2113 | 2114 | 2115 | YES 2116 | 2117 | 2118 | 2119 | 2120 | 2121 | 216 2122 | 2123 | 2124 | YES 2125 | 2126 | 2127 | 2128 | 2129 | 2130 | 200 2131 | 2132 | 2133 | YES 2134 | 2135 | 2136 | 2137 | 2138 | 2139 | 2140 | 2141 | 2142 | 219 2143 | 2144 | 2145 | 2146 | 2147 | 201 2148 | 2149 | 2150 | 2151 | 2152 | 204 2153 | 2154 | 2155 | 2156 | 2157 | 220 2158 | 2159 | 2160 | YES 2161 | 2162 | 2163 | 2164 | 2165 | 2166 | 2167 | 2168 | 2169 | 2170 | 213 2171 | 2172 | 2173 | 2174 | 2175 | 210 2176 | 2177 | 2178 | 2179 | 2180 | 221 2181 | 2182 | 2183 | 2184 | 2185 | 208 2186 | 2187 | 2188 | 2189 | 2190 | 209 2191 | 2192 | 2193 | 2194 | 2195 | 106 2196 | 2197 | 2198 | YES 2199 | 2200 | 2201 | 2202 | 2 2203 | 2204 | 2205 | 111 2206 | 2207 | 2208 | 2209 | 2210 | 57 2211 | 2212 | 2213 | YES 2214 | 2215 | 2216 | 2217 | 2218 | 2219 | 2220 | 2221 | 2222 | 2223 | 2224 | 2225 | 2226 | 2227 | 2228 | 2229 | 58 2230 | 2231 | 2232 | 2233 | 2234 | 134 2235 | 2236 | 2237 | 2238 | 2239 | 150 2240 | 2241 | 2242 | 2243 | 2244 | 136 2245 | 2246 | 2247 | 1111 2248 | 2249 | 2250 | 144 2251 | 2252 | 2253 | 2254 | 2255 | 129 2256 | 2257 | 2258 | 121 2259 | 2260 | 2261 | 143 2262 | 2263 | 2264 | 2265 | 2266 | 236 2267 | 2268 | 2269 | 2270 | 2271 | 131 2272 | 2273 | 2274 | YES 2275 | 2276 | 2277 | 2278 | 2279 | 2280 | 149 2281 | 2282 | 2283 | 2284 | 2285 | 145 2286 | 2287 | 2288 | 2289 | 2290 | 130 2291 | 2292 | 2293 | 2294 | 2295 | 24 2296 | 2297 | 2298 | YES 2299 | 2300 | 2301 | 2302 | 2303 | 2304 | 2305 | 2306 | 2307 | 92 2308 | 2309 | 2310 | 2311 | 2312 | 5 2313 | 2314 | 2315 | 2316 | 2317 | 239 2318 | 2319 | 2320 | 2321 | 2322 | 23 2323 | 2324 | 2325 | 2326 | 2327 | 295 2328 | 2329 | 2330 | YES 2331 | 2332 | 2333 | 2334 | 2335 | 2336 | 296 2337 | 2338 | 2339 | YES 2340 | 2341 | 2342 | 2343 | 2344 | 2345 | 2346 | 297 2347 | 2348 | 2349 | 2350 | 2351 | 298 2352 | 2353 | 2354 | 2355 | 2356 | 211 2357 | 2358 | 2359 | YES 2360 | 2361 | 2362 | 2363 | 2364 | 2365 | 212 2366 | 2367 | 2368 | YES 2369 | 2370 | 2371 | 2372 | 2373 | 2374 | 2375 | 195 2376 | 2377 | 2378 | 2379 | 2380 | 196 2381 | 2382 | 2383 | 2384 | 2385 | 346 2386 | 2387 | 2388 | 2389 | 2390 | 348 2391 | 2392 | 2393 | YES 2394 | 2395 | 2396 | 2397 | 2398 | 2399 | 349 2400 | 2401 | 2402 | YES 2403 | 2404 | 2405 | 2406 | 2407 | 2408 | 2409 | 2410 | 350 2411 | 2412 | 2413 | 2414 | 2415 | 351 2416 | 2417 | 2418 | 2419 | 2420 | 354 2421 | 2422 | 2423 | 2424 | 2425 | 371 2426 | 2427 | 2428 | YES 2429 | 2430 | 2431 | 2432 | 2433 | 2434 | 372 2435 | 2436 | 2437 | YES 2438 | 2439 | 2440 | 2441 | 2442 | 2443 | 2444 | 2445 | 2446 | 2447 | 2448 | 375 2449 | 2450 | 2451 | YES 2452 | 2453 | 2454 | 2455 | 2456 | 2457 | 376 2458 | 2459 | 2460 | YES 2461 | 2462 | 2463 | 2464 | 2465 | 2466 | 2467 | 377 2468 | 2469 | 2470 | YES 2471 | 2472 | 2473 | 2474 | 2475 | 2476 | 378 2477 | 2478 | 2479 | YES 2480 | 2481 | 2482 | 2483 | 2484 | 2485 | 379 2486 | 2487 | 2488 | YES 2489 | 2490 | 2491 | 2492 | 2493 | 2494 | 2495 | 2496 | 2497 | 2498 | 2499 | 2500 | 2501 | 380 2502 | 2503 | 2504 | 2505 | 2506 | 381 2507 | 2508 | 2509 | 2510 | 2511 | 382 2512 | 2513 | 2514 | 2515 | 2516 | 383 2517 | 2518 | 2519 | 2520 | 2521 | 384 2522 | 2523 | 2524 | 2525 | 2526 | 385 2527 | 2528 | 2529 | 2530 | 2531 | 386 2532 | 2533 | 2534 | 2535 | 2536 | 387 2537 | 2538 | 2539 | 2540 | 2541 | 388 2542 | 2543 | 2544 | YES 2545 | 2546 | 2547 | 2548 | 2549 | 2550 | 2551 | 2552 | 2553 | 2554 | 2555 | 2556 | 2557 | 2558 | 2559 | 2560 | 2561 | 2562 | 2563 | 2564 | 2565 | 389 2566 | 2567 | 2568 | 2569 | 2570 | 390 2571 | 2572 | 2573 | 2574 | 2575 | 391 2576 | 2577 | 2578 | 2579 | 2580 | 392 2581 | 2582 | 2583 | 2584 | 2585 | 393 2586 | 2587 | 2588 | 2589 | 2590 | 394 2591 | 2592 | 2593 | 2594 | 2595 | 395 2596 | 2597 | 2598 | 2599 | 2600 | 396 2601 | 2602 | 2603 | 2604 | 2605 | 397 2606 | 2607 | 2608 | YES 2609 | 2610 | 2611 | 2612 | 2613 | 2614 | 398 2615 | 2616 | 2617 | YES 2618 | 2619 | 2620 | 2621 | 2622 | 2623 | 399 2624 | 2625 | 2626 | YES 2627 | 2628 | 2629 | 2630 | 2631 | 2632 | 400 2633 | 2634 | 2635 | 2636 | 2637 | 401 2638 | 2639 | 2640 | 2641 | 2642 | 402 2643 | 2644 | 2645 | 2646 | 2647 | 403 2648 | 2649 | 2650 | 2651 | 2652 | 404 2653 | 2654 | 2655 | 2656 | 2657 | 405 2658 | 2659 | 2660 | YES 2661 | 2662 | 2663 | 2664 | 2665 | 2666 | 2667 | 2668 | 2669 | 2670 | 406 2671 | 2672 | 2673 | 2674 | 2675 | 407 2676 | 2677 | 2678 | 2679 | 2680 | 408 2681 | 2682 | 2683 | 2684 | 2685 | 409 2686 | 2687 | 2688 | 2689 | 2690 | 410 2691 | 2692 | 2693 | 2694 | 2695 | 411 2696 | 2697 | 2698 | YES 2699 | 2700 | 2701 | 2702 | 2703 | 2704 | 2705 | 2706 | 412 2707 | 2708 | 2709 | 2710 | 2711 | 413 2712 | 2713 | 2714 | 2715 | 2716 | 414 2717 | 2718 | 2719 | 2720 | 2721 | 415 2722 | 2723 | 2724 | YES 2725 | 2726 | 2727 | 2728 | 2729 | 2730 | 2731 | 2732 | 2733 | 416 2734 | 2735 | 2736 | 2737 | 2738 | 417 2739 | 2740 | 2741 | 2742 | 2743 | 418 2744 | 2745 | 2746 | 2747 | 2748 | 419 2749 | 2750 | 2751 | 2752 | 2753 | 420 2754 | 2755 | 2756 | 2757 | 2758 | 451 2759 | 2760 | 2761 | 2762 | 2763 | 457 2764 | 2765 | 2766 | YES 2767 | 2768 | 2769 | 2770 | 2771 | 2772 | 458 2773 | 2774 | 2775 | 2776 | 2777 | 459 2778 | 2779 | 2780 | YES 2781 | 2782 | 2783 | 2784 | 2785 | 2786 | 460 2787 | 2788 | 2789 | 2790 | 2791 | 461 2792 | 2793 | 2794 | YES 2795 | 2796 | 2797 | 2798 | 2799 | 2800 | 462 2801 | 2802 | 2803 | 2804 | 2805 | 471 2806 | 2807 | 2808 | YES 2809 | 2810 | 2811 | 2812 | 2813 | 2814 | 472 2815 | 2816 | 2817 | 2818 | 2819 | 473 2820 | 2821 | 2822 | YES 2823 | 2824 | 2825 | 2826 | 2827 | 2828 | 474 2829 | 2830 | 2831 | 2832 | 2833 | 475 2834 | 2835 | 2836 | YES 2837 | 2838 | 2839 | 2840 | 2841 | 2842 | 476 2843 | 2844 | 2845 | 2846 | 2847 | 2848 | 2849 | YES 2850 | 2851 | YES 2852 | -1.IBPluginDependency 2853 | -2.IBPluginDependency 2854 | -3.IBPluginDependency 2855 | 103.IBPluginDependency 2856 | 103.ImportedFromIB2 2857 | 106.IBPluginDependency 2858 | 106.ImportedFromIB2 2859 | 106.editorWindowContentRectSynchronizationRect 2860 | 111.IBPluginDependency 2861 | 111.ImportedFromIB2 2862 | 112.IBPluginDependency 2863 | 112.ImportedFromIB2 2864 | 124.IBPluginDependency 2865 | 124.ImportedFromIB2 2866 | 125.IBPluginDependency 2867 | 125.ImportedFromIB2 2868 | 125.editorWindowContentRectSynchronizationRect 2869 | 126.IBPluginDependency 2870 | 126.ImportedFromIB2 2871 | 129.IBPluginDependency 2872 | 129.ImportedFromIB2 2873 | 130.IBPluginDependency 2874 | 130.ImportedFromIB2 2875 | 130.editorWindowContentRectSynchronizationRect 2876 | 131.IBPluginDependency 2877 | 131.ImportedFromIB2 2878 | 134.IBPluginDependency 2879 | 134.ImportedFromIB2 2880 | 136.IBPluginDependency 2881 | 136.ImportedFromIB2 2882 | 143.IBPluginDependency 2883 | 143.ImportedFromIB2 2884 | 144.IBPluginDependency 2885 | 144.ImportedFromIB2 2886 | 145.IBPluginDependency 2887 | 145.ImportedFromIB2 2888 | 149.IBPluginDependency 2889 | 149.ImportedFromIB2 2890 | 150.IBPluginDependency 2891 | 150.ImportedFromIB2 2892 | 19.IBPluginDependency 2893 | 19.ImportedFromIB2 2894 | 195.IBPluginDependency 2895 | 195.ImportedFromIB2 2896 | 196.IBPluginDependency 2897 | 196.ImportedFromIB2 2898 | 197.IBPluginDependency 2899 | 197.ImportedFromIB2 2900 | 198.IBPluginDependency 2901 | 198.ImportedFromIB2 2902 | 199.IBPluginDependency 2903 | 199.ImportedFromIB2 2904 | 200.IBPluginDependency 2905 | 200.ImportedFromIB2 2906 | 200.editorWindowContentRectSynchronizationRect 2907 | 201.IBPluginDependency 2908 | 201.ImportedFromIB2 2909 | 202.IBPluginDependency 2910 | 202.ImportedFromIB2 2911 | 203.IBPluginDependency 2912 | 203.ImportedFromIB2 2913 | 204.IBPluginDependency 2914 | 204.ImportedFromIB2 2915 | 205.IBPluginDependency 2916 | 205.ImportedFromIB2 2917 | 205.editorWindowContentRectSynchronizationRect 2918 | 206.IBPluginDependency 2919 | 206.ImportedFromIB2 2920 | 207.IBPluginDependency 2921 | 207.ImportedFromIB2 2922 | 208.IBPluginDependency 2923 | 208.ImportedFromIB2 2924 | 209.IBPluginDependency 2925 | 209.ImportedFromIB2 2926 | 210.IBPluginDependency 2927 | 210.ImportedFromIB2 2928 | 211.IBPluginDependency 2929 | 211.ImportedFromIB2 2930 | 212.IBPluginDependency 2931 | 212.ImportedFromIB2 2932 | 212.editorWindowContentRectSynchronizationRect 2933 | 213.IBPluginDependency 2934 | 213.ImportedFromIB2 2935 | 214.IBPluginDependency 2936 | 214.ImportedFromIB2 2937 | 215.IBPluginDependency 2938 | 215.ImportedFromIB2 2939 | 216.IBPluginDependency 2940 | 216.ImportedFromIB2 2941 | 217.IBPluginDependency 2942 | 217.ImportedFromIB2 2943 | 218.IBPluginDependency 2944 | 218.ImportedFromIB2 2945 | 219.IBPluginDependency 2946 | 219.ImportedFromIB2 2947 | 220.IBPluginDependency 2948 | 220.ImportedFromIB2 2949 | 220.editorWindowContentRectSynchronizationRect 2950 | 221.IBPluginDependency 2951 | 221.ImportedFromIB2 2952 | 23.IBPluginDependency 2953 | 23.ImportedFromIB2 2954 | 236.IBPluginDependency 2955 | 236.ImportedFromIB2 2956 | 239.IBPluginDependency 2957 | 239.ImportedFromIB2 2958 | 24.IBPluginDependency 2959 | 24.ImportedFromIB2 2960 | 24.editorWindowContentRectSynchronizationRect 2961 | 29.IBEditorWindowLastContentRect 2962 | 29.IBPluginDependency 2963 | 29.ImportedFromIB2 2964 | 29.WindowOrigin 2965 | 29.editorWindowContentRectSynchronizationRect 2966 | 295.IBPluginDependency 2967 | 296.IBPluginDependency 2968 | 296.editorWindowContentRectSynchronizationRect 2969 | 297.IBPluginDependency 2970 | 298.IBPluginDependency 2971 | 346.IBPluginDependency 2972 | 346.ImportedFromIB2 2973 | 348.IBPluginDependency 2974 | 348.ImportedFromIB2 2975 | 349.IBPluginDependency 2976 | 349.ImportedFromIB2 2977 | 349.editorWindowContentRectSynchronizationRect 2978 | 350.IBPluginDependency 2979 | 350.ImportedFromIB2 2980 | 351.IBPluginDependency 2981 | 351.ImportedFromIB2 2982 | 354.IBPluginDependency 2983 | 354.ImportedFromIB2 2984 | 371.IBEditorWindowLastContentRect 2985 | 371.IBWindowTemplateEditedContentRect 2986 | 371.NSWindowTemplate.visibleAtLaunch 2987 | 371.editorWindowContentRectSynchronizationRect 2988 | 371.windowTemplate.maxSize 2989 | 372.IBPluginDependency 2990 | 375.IBPluginDependency 2991 | 376.IBEditorWindowLastContentRect 2992 | 376.IBPluginDependency 2993 | 377.IBPluginDependency 2994 | 378.IBPluginDependency 2995 | 379.IBPluginDependency 2996 | 380.IBPluginDependency 2997 | 381.IBPluginDependency 2998 | 382.IBPluginDependency 2999 | 383.IBPluginDependency 3000 | 384.IBPluginDependency 3001 | 385.IBPluginDependency 3002 | 386.IBPluginDependency 3003 | 387.IBPluginDependency 3004 | 388.IBEditorWindowLastContentRect 3005 | 388.IBPluginDependency 3006 | 389.IBPluginDependency 3007 | 390.IBPluginDependency 3008 | 391.IBPluginDependency 3009 | 392.IBPluginDependency 3010 | 393.IBPluginDependency 3011 | 394.IBPluginDependency 3012 | 395.IBPluginDependency 3013 | 396.IBPluginDependency 3014 | 397.IBPluginDependency 3015 | 398.IBPluginDependency 3016 | 399.IBPluginDependency 3017 | 400.IBPluginDependency 3018 | 401.IBPluginDependency 3019 | 402.IBPluginDependency 3020 | 403.IBPluginDependency 3021 | 404.IBPluginDependency 3022 | 405.IBPluginDependency 3023 | 406.IBPluginDependency 3024 | 407.IBPluginDependency 3025 | 408.IBPluginDependency 3026 | 409.IBPluginDependency 3027 | 410.IBPluginDependency 3028 | 411.IBPluginDependency 3029 | 412.IBPluginDependency 3030 | 413.IBPluginDependency 3031 | 414.IBPluginDependency 3032 | 415.IBPluginDependency 3033 | 416.IBPluginDependency 3034 | 417.IBPluginDependency 3035 | 418.IBPluginDependency 3036 | 419.IBPluginDependency 3037 | 420.IBPluginDependency 3038 | 451.IBPluginDependency 3039 | 457.IBPluginDependency 3040 | 458.IBPluginDependency 3041 | 459.IBPluginDependency 3042 | 460.IBPluginDependency 3043 | 461.IBPluginDependency 3044 | 462.IBPluginDependency 3045 | 471.IBPluginDependency 3046 | 472.IBPluginDependency 3047 | 473.IBPluginDependency 3048 | 474.IBPluginDependency 3049 | 475.IBPluginDependency 3050 | 476.IBPluginDependency 3051 | 5.IBPluginDependency 3052 | 5.ImportedFromIB2 3053 | 56.IBPluginDependency 3054 | 56.ImportedFromIB2 3055 | 57.IBEditorWindowLastContentRect 3056 | 57.IBPluginDependency 3057 | 57.ImportedFromIB2 3058 | 57.editorWindowContentRectSynchronizationRect 3059 | 58.IBPluginDependency 3060 | 58.ImportedFromIB2 3061 | 72.IBPluginDependency 3062 | 72.ImportedFromIB2 3063 | 73.IBPluginDependency 3064 | 73.ImportedFromIB2 3065 | 74.IBPluginDependency 3066 | 74.ImportedFromIB2 3067 | 75.IBPluginDependency 3068 | 75.ImportedFromIB2 3069 | 77.IBPluginDependency 3070 | 77.ImportedFromIB2 3071 | 78.IBPluginDependency 3072 | 78.ImportedFromIB2 3073 | 79.IBPluginDependency 3074 | 79.ImportedFromIB2 3075 | 80.IBPluginDependency 3076 | 80.ImportedFromIB2 3077 | 81.IBPluginDependency 3078 | 81.ImportedFromIB2 3079 | 81.editorWindowContentRectSynchronizationRect 3080 | 82.IBPluginDependency 3081 | 82.ImportedFromIB2 3082 | 83.IBPluginDependency 3083 | 83.ImportedFromIB2 3084 | 92.IBPluginDependency 3085 | 92.ImportedFromIB2 3086 | 3087 | 3088 | YES 3089 | com.apple.InterfaceBuilder.CocoaPlugin 3090 | com.apple.InterfaceBuilderKit 3091 | com.apple.InterfaceBuilderKit 3092 | com.apple.InterfaceBuilder.CocoaPlugin 3093 | 3094 | com.apple.InterfaceBuilder.CocoaPlugin 3095 | 3096 | {{596, 852}, {216, 23}} 3097 | com.apple.InterfaceBuilder.CocoaPlugin 3098 | 3099 | com.apple.InterfaceBuilder.CocoaPlugin 3100 | 3101 | com.apple.InterfaceBuilder.CocoaPlugin 3102 | 3103 | com.apple.InterfaceBuilder.CocoaPlugin 3104 | 3105 | {{522, 812}, {146, 23}} 3106 | com.apple.InterfaceBuilder.CocoaPlugin 3107 | 3108 | com.apple.InterfaceBuilder.CocoaPlugin 3109 | 3110 | com.apple.InterfaceBuilder.CocoaPlugin 3111 | 3112 | {{436, 809}, {64, 6}} 3113 | com.apple.InterfaceBuilder.CocoaPlugin 3114 | 3115 | com.apple.InterfaceBuilder.CocoaPlugin 3116 | 3117 | com.apple.InterfaceBuilder.CocoaPlugin 3118 | 3119 | com.apple.InterfaceBuilder.CocoaPlugin 3120 | 3121 | com.apple.InterfaceBuilder.CocoaPlugin 3122 | 3123 | com.apple.InterfaceBuilder.CocoaPlugin 3124 | 3125 | com.apple.InterfaceBuilder.CocoaPlugin 3126 | 3127 | com.apple.InterfaceBuilder.CocoaPlugin 3128 | 3129 | com.apple.InterfaceBuilder.CocoaPlugin 3130 | 3131 | com.apple.InterfaceBuilder.CocoaPlugin 3132 | 3133 | com.apple.InterfaceBuilder.CocoaPlugin 3134 | 3135 | com.apple.InterfaceBuilder.CocoaPlugin 3136 | 3137 | com.apple.InterfaceBuilder.CocoaPlugin 3138 | 3139 | com.apple.InterfaceBuilder.CocoaPlugin 3140 | 3141 | com.apple.InterfaceBuilder.CocoaPlugin 3142 | 3143 | {{608, 612}, {275, 83}} 3144 | com.apple.InterfaceBuilder.CocoaPlugin 3145 | 3146 | com.apple.InterfaceBuilder.CocoaPlugin 3147 | 3148 | com.apple.InterfaceBuilder.CocoaPlugin 3149 | 3150 | com.apple.InterfaceBuilder.CocoaPlugin 3151 | 3152 | com.apple.InterfaceBuilder.CocoaPlugin 3153 | 3154 | {{187, 434}, {243, 243}} 3155 | com.apple.InterfaceBuilder.CocoaPlugin 3156 | 3157 | com.apple.InterfaceBuilder.CocoaPlugin 3158 | 3159 | com.apple.InterfaceBuilder.CocoaPlugin 3160 | 3161 | com.apple.InterfaceBuilder.CocoaPlugin 3162 | 3163 | com.apple.InterfaceBuilder.CocoaPlugin 3164 | 3165 | com.apple.InterfaceBuilder.CocoaPlugin 3166 | 3167 | com.apple.InterfaceBuilder.CocoaPlugin 3168 | 3169 | {{608, 612}, {167, 43}} 3170 | com.apple.InterfaceBuilder.CocoaPlugin 3171 | 3172 | com.apple.InterfaceBuilder.CocoaPlugin 3173 | 3174 | com.apple.InterfaceBuilder.CocoaPlugin 3175 | 3176 | com.apple.InterfaceBuilder.CocoaPlugin 3177 | 3178 | com.apple.InterfaceBuilder.CocoaPlugin 3179 | 3180 | com.apple.InterfaceBuilder.CocoaPlugin 3181 | 3182 | com.apple.InterfaceBuilder.CocoaPlugin 3183 | 3184 | com.apple.InterfaceBuilder.CocoaPlugin 3185 | 3186 | {{608, 612}, {241, 103}} 3187 | com.apple.InterfaceBuilder.CocoaPlugin 3188 | 3189 | com.apple.InterfaceBuilder.CocoaPlugin 3190 | 3191 | com.apple.InterfaceBuilder.CocoaPlugin 3192 | 3193 | com.apple.InterfaceBuilder.CocoaPlugin 3194 | 3195 | com.apple.InterfaceBuilder.CocoaPlugin 3196 | 3197 | {{525, 802}, {197, 73}} 3198 | {{168, 564}, {467, 20}} 3199 | com.apple.InterfaceBuilder.CocoaPlugin 3200 | 3201 | {74, 862} 3202 | {{6, 978}, {478, 20}} 3203 | com.apple.InterfaceBuilder.CocoaPlugin 3204 | com.apple.InterfaceBuilder.CocoaPlugin 3205 | {{475, 832}, {234, 43}} 3206 | com.apple.InterfaceBuilder.CocoaPlugin 3207 | com.apple.InterfaceBuilder.CocoaPlugin 3208 | com.apple.InterfaceBuilder.CocoaPlugin 3209 | 3210 | com.apple.InterfaceBuilder.CocoaPlugin 3211 | 3212 | com.apple.InterfaceBuilder.CocoaPlugin 3213 | 3214 | {{608, 612}, {215, 63}} 3215 | com.apple.InterfaceBuilder.CocoaPlugin 3216 | 3217 | com.apple.InterfaceBuilder.CocoaPlugin 3218 | 3219 | com.apple.InterfaceBuilder.CocoaPlugin 3220 | 3221 | {{107, 467}, {480, 230}} 3222 | {{107, 467}, {480, 230}} 3223 | 3224 | {{33, 99}, {480, 360}} 3225 | {3.40282e+38, 3.40282e+38} 3226 | com.apple.InterfaceBuilder.CocoaPlugin 3227 | com.apple.InterfaceBuilder.CocoaPlugin 3228 | {{437, 242}, {86, 43}} 3229 | com.apple.InterfaceBuilder.CocoaPlugin 3230 | com.apple.InterfaceBuilder.CocoaPlugin 3231 | com.apple.InterfaceBuilder.CocoaPlugin 3232 | com.apple.InterfaceBuilder.CocoaPlugin 3233 | com.apple.InterfaceBuilder.CocoaPlugin 3234 | com.apple.InterfaceBuilder.CocoaPlugin 3235 | com.apple.InterfaceBuilder.CocoaPlugin 3236 | com.apple.InterfaceBuilder.CocoaPlugin 3237 | com.apple.InterfaceBuilder.CocoaPlugin 3238 | com.apple.InterfaceBuilder.CocoaPlugin 3239 | com.apple.InterfaceBuilder.CocoaPlugin 3240 | com.apple.InterfaceBuilder.CocoaPlugin 3241 | {{523, 2}, {178, 283}} 3242 | com.apple.InterfaceBuilder.CocoaPlugin 3243 | com.apple.InterfaceBuilder.CocoaPlugin 3244 | com.apple.InterfaceBuilder.CocoaPlugin 3245 | com.apple.InterfaceBuilder.CocoaPlugin 3246 | com.apple.InterfaceBuilder.CocoaPlugin 3247 | com.apple.InterfaceBuilder.CocoaPlugin 3248 | com.apple.InterfaceBuilder.CocoaPlugin 3249 | com.apple.InterfaceBuilder.CocoaPlugin 3250 | com.apple.InterfaceBuilder.CocoaPlugin 3251 | com.apple.InterfaceBuilder.CocoaPlugin 3252 | com.apple.InterfaceBuilder.CocoaPlugin 3253 | com.apple.InterfaceBuilder.CocoaPlugin 3254 | com.apple.InterfaceBuilder.CocoaPlugin 3255 | com.apple.InterfaceBuilder.CocoaPlugin 3256 | com.apple.InterfaceBuilder.CocoaPlugin 3257 | com.apple.InterfaceBuilder.CocoaPlugin 3258 | com.apple.InterfaceBuilder.CocoaPlugin 3259 | com.apple.InterfaceBuilder.CocoaPlugin 3260 | com.apple.InterfaceBuilder.CocoaPlugin 3261 | com.apple.InterfaceBuilder.CocoaPlugin 3262 | com.apple.InterfaceBuilder.CocoaPlugin 3263 | com.apple.InterfaceBuilder.CocoaPlugin 3264 | com.apple.InterfaceBuilder.CocoaPlugin 3265 | com.apple.InterfaceBuilder.CocoaPlugin 3266 | com.apple.InterfaceBuilder.CocoaPlugin 3267 | com.apple.InterfaceBuilder.CocoaPlugin 3268 | com.apple.InterfaceBuilder.CocoaPlugin 3269 | com.apple.InterfaceBuilder.CocoaPlugin 3270 | com.apple.InterfaceBuilder.CocoaPlugin 3271 | com.apple.InterfaceBuilder.CocoaPlugin 3272 | com.apple.InterfaceBuilder.CocoaPlugin 3273 | com.apple.InterfaceBuilder.CocoaPlugin 3274 | com.apple.InterfaceBuilder.CocoaPlugin 3275 | com.apple.InterfaceBuilder.CocoaPlugin 3276 | com.apple.InterfaceBuilder.CocoaPlugin 3277 | com.apple.InterfaceBuilder.CocoaPlugin 3278 | com.apple.InterfaceBuilder.CocoaPlugin 3279 | com.apple.InterfaceBuilder.CocoaPlugin 3280 | com.apple.InterfaceBuilder.CocoaPlugin 3281 | com.apple.InterfaceBuilder.CocoaPlugin 3282 | com.apple.InterfaceBuilder.CocoaPlugin 3283 | com.apple.InterfaceBuilder.CocoaPlugin 3284 | com.apple.InterfaceBuilder.CocoaPlugin 3285 | com.apple.InterfaceBuilder.CocoaPlugin 3286 | com.apple.InterfaceBuilder.CocoaPlugin 3287 | com.apple.InterfaceBuilder.CocoaPlugin 3288 | com.apple.InterfaceBuilder.CocoaPlugin 3289 | 3290 | com.apple.InterfaceBuilder.CocoaPlugin 3291 | 3292 | {{180, 381}, {235, 183}} 3293 | com.apple.InterfaceBuilder.CocoaPlugin 3294 | 3295 | {{23, 794}, {245, 183}} 3296 | com.apple.InterfaceBuilder.CocoaPlugin 3297 | 3298 | com.apple.InterfaceBuilder.CocoaPlugin 3299 | 3300 | com.apple.InterfaceBuilder.CocoaPlugin 3301 | 3302 | com.apple.InterfaceBuilder.CocoaPlugin 3303 | 3304 | com.apple.InterfaceBuilder.CocoaPlugin 3305 | 3306 | com.apple.InterfaceBuilder.CocoaPlugin 3307 | 3308 | com.apple.InterfaceBuilder.CocoaPlugin 3309 | 3310 | com.apple.InterfaceBuilder.CocoaPlugin 3311 | 3312 | com.apple.InterfaceBuilder.CocoaPlugin 3313 | 3314 | com.apple.InterfaceBuilder.CocoaPlugin 3315 | 3316 | {{145, 474}, {199, 203}} 3317 | com.apple.InterfaceBuilder.CocoaPlugin 3318 | 3319 | com.apple.InterfaceBuilder.CocoaPlugin 3320 | 3321 | com.apple.InterfaceBuilder.CocoaPlugin 3322 | 3323 | 3324 | 3325 | 3326 | YES 3327 | 3328 | YES 3329 | 3330 | 3331 | YES 3332 | 3333 | 3334 | 3335 | 3336 | YES 3337 | 3338 | YES 3339 | 3340 | 3341 | YES 3342 | 3343 | 3344 | 3345 | 481 3346 | 3347 | 3348 | 3349 | YES 3350 | 3351 | App 3352 | NSObject 3353 | 3354 | YES 3355 | 3356 | YES 3357 | applyChange: 3358 | showPrefPanel: 3359 | 3360 | 3361 | YES 3362 | id 3363 | id 3364 | 3365 | 3366 | 3367 | YES 3368 | 3369 | YES 3370 | prefPanel 3371 | textField 3372 | 3373 | 3374 | YES 3375 | NSWindow 3376 | NSTextField 3377 | 3378 | 3379 | 3380 | IBProjectSource 3381 | Classes/App.h 3382 | 3383 | 3384 | 3385 | 3386 | 0 3387 | ../emacs-handler.xcodeproj 3388 | 3 3389 | 3390 | 3391 | -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleURLTypes 6 | 7 | 8 | CFBundleURLSchemes 9 | 10 | emacs 11 | 12 | CFBundleURLName 13 | org.unknownplace.emacshandler 14 | 15 | 16 | CFBundleDevelopmentRegion 17 | English 18 | CFBundleExecutable 19 | ${EXECUTABLE_NAME} 20 | CFBundleIconFile 21 | 22 | CFBundleIdentifier 23 | org.unknownplace.emacshandler 24 | CFBundleInfoDictionaryVersion 25 | 6.0 26 | CFBundleName 27 | ${PRODUCT_NAME} 28 | CFBundlePackageType 29 | APPL 30 | CFBundleSignature 31 | ???? 32 | CFBundleVersion 33 | 1.0 34 | NSMainNibFile 35 | MainMenu 36 | NSPrincipalClass 37 | NSApplication 38 | 39 | 40 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | EmacsURLHandler for OSX 2 | ======================= 3 | 4 | This application enables your emacs to open files via hyperlinks starts with `emacs://` something like: 5 | 6 | emacs://open/?url=file:///etc/passwd&line=10&column=2 7 | 8 | This URL format is same as TextMate's `txmt:` scheme described [here](http://manual.macromates.com/en/using_textmate_from_terminal#url_scheme_html) 9 | 10 | Requirements 11 | ------------ 12 | 13 | * Mac OS X (10.5 or 10.6) 14 | * Emacs 15 | 16 | Download 17 | -------- 18 | 19 | [EmacsHandler-1.0.zip](http://cloud.github.com/downloads/typester/emacs-handler/EmacsHandler-1.0.zip) (Universal Binary) 20 | 21 | Installation 22 | ------------ 23 | 24 | Download [latest release](http://cloud.github.com/downloads/typester/emacs-handler/EmacsHandler-1.0.zip). 25 | 26 | Unzip it, and install it in your Applications directory. 27 | 28 | Launch it and select `EmacsHandler` -> `Preferences...`, then following window will open. 29 | 30 | EmacsHandler Preferences 31 | 32 | Enter your emacsclient path and push apply button. 33 | 34 | Test it 35 | ------- 36 | 37 | Open terminal and type: 38 | 39 | open 'emacs://open/?url=file:///etc/hosts' 40 | 41 | or just click [this link](emacs://open/?url=file:///etc/hosts) 42 | 43 | 44 | Uninstalling 45 | ------------ 46 | 47 | Delete following: 48 | 49 | /Applications/EmacsHandler.app 50 | ~/Library/Preferences/org.unknownplace.emacshandler.plist 51 | 52 | 53 | Author 54 | ------ 55 | 56 | Daisuke Murase :@typester (github, twitter, CPAN, etc..) 57 | 58 | License 59 | ------- 60 | 61 | BSD. 62 | 63 | -------------------------------------------------------------------------------- /emacs-handler.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 45; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1DDD58160DA1D0A300B32029 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1DDD58140DA1D0A300B32029 /* MainMenu.xib */; }; 11 | 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; }; 12 | 8D11072D0486CEB800E47090 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; }; 13 | 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; 14 | A07878C2109C002C004947EC /* App.m in Sources */ = {isa = PBXBuildFile; fileRef = A07878BF109C002C004947EC /* App.m */; }; 15 | A07878C3109C002C004947EC /* NSURL+L0URLParsing.m in Sources */ = {isa = PBXBuildFile; fileRef = A07878C1109C002C004947EC /* NSURL+L0URLParsing.m */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXFileReference section */ 19 | 089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = ""; }; 20 | 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; 21 | 1DDD58150DA1D0A300B32029 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MainMenu.xib; sourceTree = ""; }; 22 | 29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 23 | 29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = ""; }; 24 | 29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = ""; }; 25 | 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 26 | 8D1107320486CEB800E47090 /* EmacsHandler.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = EmacsHandler.app; sourceTree = BUILT_PRODUCTS_DIR; }; 27 | A07878BE109C002C004947EC /* App.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = App.h; path = Classes/App.h; sourceTree = ""; }; 28 | A07878BF109C002C004947EC /* App.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = App.m; path = Classes/App.m; sourceTree = ""; }; 29 | A07878C0109C002C004947EC /* NSURL+L0URLParsing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSURL+L0URLParsing.h"; path = "Classes/NSURL+L0URLParsing.h"; sourceTree = ""; }; 30 | A07878C1109C002C004947EC /* NSURL+L0URLParsing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSURL+L0URLParsing.m"; path = "Classes/NSURL+L0URLParsing.m"; sourceTree = ""; }; 31 | /* End PBXFileReference section */ 32 | 33 | /* Begin PBXFrameworksBuildPhase section */ 34 | 8D11072E0486CEB800E47090 /* Frameworks */ = { 35 | isa = PBXFrameworksBuildPhase; 36 | buildActionMask = 2147483647; 37 | files = ( 38 | 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */, 39 | ); 40 | runOnlyForDeploymentPostprocessing = 0; 41 | }; 42 | /* End PBXFrameworksBuildPhase section */ 43 | 44 | /* Begin PBXGroup section */ 45 | 080E96DDFE201D6D7F000001 /* Classes */ = { 46 | isa = PBXGroup; 47 | children = ( 48 | A07878BE109C002C004947EC /* App.h */, 49 | A07878BF109C002C004947EC /* App.m */, 50 | A07878C0109C002C004947EC /* NSURL+L0URLParsing.h */, 51 | A07878C1109C002C004947EC /* NSURL+L0URLParsing.m */, 52 | ); 53 | name = Classes; 54 | sourceTree = ""; 55 | }; 56 | 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = { 57 | isa = PBXGroup; 58 | children = ( 59 | 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */, 60 | ); 61 | name = "Linked Frameworks"; 62 | sourceTree = ""; 63 | }; 64 | 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = { 65 | isa = PBXGroup; 66 | children = ( 67 | 29B97324FDCFA39411CA2CEA /* AppKit.framework */, 68 | 29B97325FDCFA39411CA2CEA /* Foundation.framework */, 69 | ); 70 | name = "Other Frameworks"; 71 | sourceTree = ""; 72 | }; 73 | 19C28FACFE9D520D11CA2CBB /* Products */ = { 74 | isa = PBXGroup; 75 | children = ( 76 | 8D1107320486CEB800E47090 /* EmacsHandler.app */, 77 | ); 78 | name = Products; 79 | sourceTree = ""; 80 | }; 81 | 29B97314FDCFA39411CA2CEA /* emacs-handler */ = { 82 | isa = PBXGroup; 83 | children = ( 84 | 080E96DDFE201D6D7F000001 /* Classes */, 85 | 29B97315FDCFA39411CA2CEA /* Other Sources */, 86 | 29B97317FDCFA39411CA2CEA /* Resources */, 87 | 29B97323FDCFA39411CA2CEA /* Frameworks */, 88 | 19C28FACFE9D520D11CA2CBB /* Products */, 89 | ); 90 | name = "emacs-handler"; 91 | sourceTree = ""; 92 | }; 93 | 29B97315FDCFA39411CA2CEA /* Other Sources */ = { 94 | isa = PBXGroup; 95 | children = ( 96 | 29B97316FDCFA39411CA2CEA /* main.m */, 97 | ); 98 | name = "Other Sources"; 99 | sourceTree = ""; 100 | }; 101 | 29B97317FDCFA39411CA2CEA /* Resources */ = { 102 | isa = PBXGroup; 103 | children = ( 104 | 8D1107310486CEB800E47090 /* Info.plist */, 105 | 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */, 106 | 1DDD58140DA1D0A300B32029 /* MainMenu.xib */, 107 | ); 108 | name = Resources; 109 | sourceTree = ""; 110 | }; 111 | 29B97323FDCFA39411CA2CEA /* Frameworks */ = { 112 | isa = PBXGroup; 113 | children = ( 114 | 1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */, 115 | 1058C7A2FEA54F0111CA2CBB /* Other Frameworks */, 116 | ); 117 | name = Frameworks; 118 | sourceTree = ""; 119 | }; 120 | /* End PBXGroup section */ 121 | 122 | /* Begin PBXNativeTarget section */ 123 | 8D1107260486CEB800E47090 /* EmacsHandler */ = { 124 | isa = PBXNativeTarget; 125 | buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "EmacsHandler" */; 126 | buildPhases = ( 127 | 8D1107290486CEB800E47090 /* Resources */, 128 | 8D11072C0486CEB800E47090 /* Sources */, 129 | 8D11072E0486CEB800E47090 /* Frameworks */, 130 | ); 131 | buildRules = ( 132 | ); 133 | dependencies = ( 134 | ); 135 | name = EmacsHandler; 136 | productInstallPath = "$(HOME)/Applications"; 137 | productName = "emacs-handler"; 138 | productReference = 8D1107320486CEB800E47090 /* EmacsHandler.app */; 139 | productType = "com.apple.product-type.application"; 140 | }; 141 | /* End PBXNativeTarget section */ 142 | 143 | /* Begin PBXProject section */ 144 | 29B97313FDCFA39411CA2CEA /* Project object */ = { 145 | isa = PBXProject; 146 | buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "emacs-handler" */; 147 | compatibilityVersion = "Xcode 3.1"; 148 | hasScannedForEncodings = 1; 149 | mainGroup = 29B97314FDCFA39411CA2CEA /* emacs-handler */; 150 | projectDirPath = ""; 151 | projectRoot = ""; 152 | targets = ( 153 | 8D1107260486CEB800E47090 /* EmacsHandler */, 154 | ); 155 | }; 156 | /* End PBXProject section */ 157 | 158 | /* Begin PBXResourcesBuildPhase section */ 159 | 8D1107290486CEB800E47090 /* Resources */ = { 160 | isa = PBXResourcesBuildPhase; 161 | buildActionMask = 2147483647; 162 | files = ( 163 | 8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */, 164 | 1DDD58160DA1D0A300B32029 /* MainMenu.xib in Resources */, 165 | ); 166 | runOnlyForDeploymentPostprocessing = 0; 167 | }; 168 | /* End PBXResourcesBuildPhase section */ 169 | 170 | /* Begin PBXSourcesBuildPhase section */ 171 | 8D11072C0486CEB800E47090 /* Sources */ = { 172 | isa = PBXSourcesBuildPhase; 173 | buildActionMask = 2147483647; 174 | files = ( 175 | 8D11072D0486CEB800E47090 /* main.m in Sources */, 176 | A07878C2109C002C004947EC /* App.m in Sources */, 177 | A07878C3109C002C004947EC /* NSURL+L0URLParsing.m in Sources */, 178 | ); 179 | runOnlyForDeploymentPostprocessing = 0; 180 | }; 181 | /* End PBXSourcesBuildPhase section */ 182 | 183 | /* Begin PBXVariantGroup section */ 184 | 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = { 185 | isa = PBXVariantGroup; 186 | children = ( 187 | 089C165DFE840E0CC02AAC07 /* English */, 188 | ); 189 | name = InfoPlist.strings; 190 | sourceTree = ""; 191 | }; 192 | 1DDD58140DA1D0A300B32029 /* MainMenu.xib */ = { 193 | isa = PBXVariantGroup; 194 | children = ( 195 | 1DDD58150DA1D0A300B32029 /* English */, 196 | ); 197 | name = MainMenu.xib; 198 | sourceTree = ""; 199 | }; 200 | /* End PBXVariantGroup section */ 201 | 202 | /* Begin XCBuildConfiguration section */ 203 | C01FCF4B08A954540054247B /* Debug */ = { 204 | isa = XCBuildConfiguration; 205 | buildSettings = { 206 | ALWAYS_SEARCH_USER_PATHS = NO; 207 | COPY_PHASE_STRIP = NO; 208 | GCC_DYNAMIC_NO_PIC = NO; 209 | GCC_ENABLE_FIX_AND_CONTINUE = YES; 210 | GCC_MODEL_TUNING = G5; 211 | GCC_OPTIMIZATION_LEVEL = 0; 212 | GCC_PRECOMPILE_PREFIX_HEADER = NO; 213 | INFOPLIST_FILE = Info.plist; 214 | INSTALL_PATH = "$(HOME)/Applications"; 215 | PRODUCT_NAME = EmacsHandler; 216 | }; 217 | name = Debug; 218 | }; 219 | C01FCF4C08A954540054247B /* Release */ = { 220 | isa = XCBuildConfiguration; 221 | buildSettings = { 222 | ALWAYS_SEARCH_USER_PATHS = NO; 223 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 224 | GCC_MODEL_TUNING = G5; 225 | GCC_PRECOMPILE_PREFIX_HEADER = NO; 226 | INFOPLIST_FILE = Info.plist; 227 | INSTALL_PATH = "$(HOME)/Applications"; 228 | PRODUCT_NAME = EmacsHandler; 229 | }; 230 | name = Release; 231 | }; 232 | C01FCF4F08A954540054247B /* Debug */ = { 233 | isa = XCBuildConfiguration; 234 | buildSettings = { 235 | ARCHS = "$(ARCHS_STANDARD_32_BIT)"; 236 | GCC_C_LANGUAGE_STANDARD = c99; 237 | GCC_OPTIMIZATION_LEVEL = 0; 238 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 239 | GCC_WARN_UNUSED_VARIABLE = YES; 240 | ONLY_ACTIVE_ARCH = YES; 241 | PREBINDING = NO; 242 | SDKROOT = macosx10.5; 243 | }; 244 | name = Debug; 245 | }; 246 | C01FCF5008A954540054247B /* Release */ = { 247 | isa = XCBuildConfiguration; 248 | buildSettings = { 249 | ARCHS = "$(ARCHS_STANDARD_32_BIT)"; 250 | GCC_C_LANGUAGE_STANDARD = c99; 251 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 252 | GCC_WARN_UNUSED_VARIABLE = YES; 253 | PREBINDING = NO; 254 | SDKROOT = macosx10.5; 255 | }; 256 | name = Release; 257 | }; 258 | /* End XCBuildConfiguration section */ 259 | 260 | /* Begin XCConfigurationList section */ 261 | C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "EmacsHandler" */ = { 262 | isa = XCConfigurationList; 263 | buildConfigurations = ( 264 | C01FCF4B08A954540054247B /* Debug */, 265 | C01FCF4C08A954540054247B /* Release */, 266 | ); 267 | defaultConfigurationIsVisible = 0; 268 | defaultConfigurationName = Release; 269 | }; 270 | C01FCF4E08A954540054247B /* Build configuration list for PBXProject "emacs-handler" */ = { 271 | isa = XCConfigurationList; 272 | buildConfigurations = ( 273 | C01FCF4F08A954540054247B /* Debug */, 274 | C01FCF5008A954540054247B /* Release */, 275 | ); 276 | defaultConfigurationIsVisible = 0; 277 | defaultConfigurationName = Release; 278 | }; 279 | /* End XCConfigurationList section */ 280 | }; 281 | rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; 282 | } 283 | -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | int main(int argc, char *argv[]) 4 | { 5 | return NSApplicationMain(argc, (const char **) argv); 6 | } 7 | -------------------------------------------------------------------------------- /version.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildVersion 6 | 3 7 | CFBundleVersion 8 | 1.0 9 | ProductBuildVersion 10 | 9M2729 11 | ProjectName 12 | DevToolsWizardTemplates 13 | SourceVersion 14 | 11600000 15 | 16 | 17 | --------------------------------------------------------------------------------