1
0
forked from VimPlug/jedi

faster get_in_function_call, may improve #34

This commit is contained in:
David Halter
2012-11-20 18:14:42 +01:00
parent cfaff62d47
commit 3474d481b6
3 changed files with 26 additions and 3 deletions
+7 -1
View File
@@ -61,7 +61,13 @@ additional_dynamic_modules = []
max_function_recursion_level = 5
max_until_execution_unique = 50
max_executions = 1000
max_executions_without_builtins = 200
max_executions = 250
# Because get_in_function_call is normally used on every single key hit, it has
# to be faster than a normal completion. This is the factor that is used to
# scale `max_executions` and `max_until_execution_unique`:
scale_get_in_function_call = 0.1
# ----------------
# various