forked from JulianEberius/SublimeRope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSublimeRope.sublime-settings
32 lines (31 loc) · 1.24 KB
/
SublimeRope.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
{
"suppress_word_completions": false,
"suppress_explicit_completions": false,
"use_simple_completion": false,
"add_parameter_snippet": true,
"use_autoimport_improvements": true,
// non-trivial / nested modules have to be added with ".*", e.g. "numpy.*"
// You can specify "autoimport_modules" in your project settings as project
// specific opions. Navigate to Project->Edit Project and add your modules
// there the `settings` section. If settings section doesn's exists just
// create it:
// "settings":
// {
// "rope_autoimport_modules":
// [
// "twisted.*",
// "numpy.*",
// "libsaas.*"
// ...
// ]
// }
"autoimport_modules": [],
"pyflakes_linting": true,
"complete_as_you_type": true,
"case_sensitive_completion": true,
// If true, class properties/methods will be included in the 'jump-to-global' list,
// in addition to the module-level objects (similar to Eclipse's globals browser).
// Requires a re-gen of the cache if this setting is changed.
// Note: slightly shower since there are more objects to index
"include_classmethods_in_globals": false
}