-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnippet_completer.js
56 lines (45 loc) · 1.69 KB
/
snippet_completer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
* Cloud9 Language Foundation
*
* @copyright 2011, Ajax.org B.V.
* @license GPLv3 <http://www.gnu.org/licenses/gpl.txt>
*/
define(function(require, exports, module) {
var completeUtil = require("ext/codecomplete/complete_util");
var baseLanguageHandler = require('ext/language/base_handler');
var completer = module.exports = Object.create(baseLanguageHandler);
var snippetCache = {}; // extension -> snippets
completer.handlesLanguage = function(language) {
return language === "javascript";
};
completer.getMaxFileSizeSupported = function() {
return Infinity;
};
completer.complete = function(doc, fullAst, pos, currentNode, callback) {
var line = doc.getLine(pos.row);
var identifier = completeUtil.retrievePrecedingIdentifier(line, pos.column);
if(line[pos.column - identifier.length - 1] === '.') // No snippet completion after "."
return callback([]);
var snippets = snippetCache[this.language];
if (snippets === undefined) {
var text;
if (this.language)
text = completeUtil.fetchText(this.staticPrefix, 'ext/codecomplete/snippets/' + this.language + '.json');
snippets = text ? JSON.parse(text) : {};
// Cache
snippetCache[this.language] = snippets;
}
var allIdentifiers = Object.keys(snippets);
var matches = completeUtil.findCompletions(identifier, allIdentifiers);
callback(matches.map(function(m) {
return {
name : m,
replaceText : snippets[m],
doc : "<pre>" + snippets[m].replace("\^\^", "␣") + "</pre>",
icon : null,
meta : "snippet",
priority : 2
};
}));
};
});