added a new option: dynamic_params_for_other_modules

This commit is contained in:
David Halter
2012-10-01 10:03:48 +02:00
parent 74fe520597
commit 5021a6bee9
2 changed files with 14 additions and 11 deletions
+1
View File
@@ -48,6 +48,7 @@ def get_directory_modules_for_name(mods, name):
mod_paths.add(m.path) mod_paths.add(m.path)
yield m yield m
if settings.dynamic_params_for_other_modules:
paths = set(settings.additional_dynamic_modules) paths = set(settings.additional_dynamic_modules)
for p in mod_paths: for p in mod_paths:
d = os.path.dirname(p) d = os.path.dirname(p)
+2
View File
@@ -27,6 +27,8 @@ dynamic_array_additions = True
# A dynamic param completion, finds the callees of the function, which define # A dynamic param completion, finds the callees of the function, which define
# the params of a function. # the params of a function.
dynamic_params = True dynamic_params = True
# Do the same for other modules.
dynamic_params_for_other_modules = True
# Additional modules in which Jedi checks if statements are to be found. This # Additional modules in which Jedi checks if statements are to be found. This
# is practical for IDE's, that want to administrate their modules themselves. # is practical for IDE's, that want to administrate their modules themselves.