~john-koepi/ubuntu/trusty/golang/default

« back to all changes in this revision

Viewing changes to misc/xcode/go.pbfilespec

  • Committer: Bazaar Package Importer
  • Author(s): Ondřej Surý
  • Date: 2011-04-20 17:36:48 UTC
  • Revision ID: james.westby@ubuntu.com-20110420173648-ifergoxyrm832trd
Tags: upstream-2011.03.07.1
Import upstream version 2011.03.07.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
        Copyright 2009 The Go Authors. All rights reserved.
 
3
        Use of this source code is governed by a BSD-style
 
4
        license that can be found in the LICENSE file.
 
5
 
 
6
        go.pbfilespec
 
7
        Go source file spec for Xcode 3
 
8
 
 
9
        There is not much documentation available regarding the format
 
10
        of .pbfilespec files. As a starting point, see for instance the
 
11
        outdated documentation at:
 
12
        http://maxao.free.fr/xcode-plugin-interface/specifications.html
 
13
        and the files in:
 
14
        /Developer/Library/PrivateFrameworks/XcodeEdit.framework/Versions/A/Resources/
 
15
 
 
16
        Place this file in directory:
 
17
        ~/Library/Application Support/Developer/Shared/Xcode/Specifications/
 
18
*/
 
19
 
 
20
(
 
21
        {
 
22
                Identifier = sourcecode.go;
 
23
                BasedOn = sourcecode;
 
24
                Name = "Go Files";
 
25
                Extensions = ("go");
 
26
                MIMETypes = ("text/go");
 
27
                Language = "xcode.lang.go";
 
28
                IsTextFile = YES;
 
29
                IsSourceFile = YES;
 
30
        }
 
31
)