Projekt

Obecné

Profil

Stáhnout (948 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
ace.define("ace/snippets/diff",["require","exports","module"], function(require, exports, module) {
2
"use strict";
3

    
4
exports.snippetText = "# DEP-3 (http://dep.debian.net/deps/dep3/) style patch header\n\
5
snippet header DEP-3 style header\n\
6
	Description: ${1}\n\
7
	Origin: ${2:vendor|upstream|other}, ${3:url of the original patch}\n\
8
	Bug: ${4:url in upstream bugtracker}\n\
9
	Forwarded: ${5:no|not-needed|url}\n\
10
	Author: ${6:`g:snips_author`}\n\
11
	Reviewed-by: ${7:name and email}\n\
12
	Last-Update: ${8:`strftime(\"%Y-%m-%d\")`}\n\
13
	Applied-Upstream: ${9:upstream version|url|commit}\n\
14
\n\
15
";
16
exports.scope = "diff";
17

    
18
});                (function() {
19
                    ace.require(["ace/snippets/diff"], function(m) {
20
                        if (typeof module == "object" && typeof exports == "object" && module) {
21
                            module.exports = m;
22
                        }
23
                    });
24
                })();
25
            
(32-32/171)