forked from justinmahar/SublimeCSAutocompletePlus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoffeeComplete Plus.sublime-settings
44 lines (42 loc) · 1.16 KB
/
CoffeeComplete Plus.sublime-settings
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
{
// These dirs will not be searched when looking for .coffee files.
// These should be dir names only. No relative paths.
"coffee_autocomplete_plus_excluded_dirs":
[
".svn",
".git",
"CVS",
"lib",
"node_modules",
"pub",
"public",
"vendor",
"doc",
"docs",
"build",
"builds",
"bin"
],
// List of strings. These paths will be appended to your project's root and searched.
// Leave empty to search all directories in your project's root directory.
"coffee_autocomplete_plus_restricted_to_paths": [],
// Map function names to types.
"coffee_autocomplete_plus_function_return_types":
[
{
"function_names": ["$", "jQuery"],
"type_name": "$"
}
],
// Regular expression of members to exclude from autocomplete.
// This is useful for properties/methods that are regarded "private" and start
// with an underscore. E.g. _privateVariable
"coffee_autocomplete_plus_member_exclusion_regexes":
[
"^_" // Starts with underscore
],
// OBSOLETE
// Aliases for "this", like "that" and "self".
// CA+ assignment detection is now able to detect that = this assignments.
"coffee_autocomplete_plus_this_aliases": ["that", "self"]
}