add automatically an opening bracket to a function and a dot to a module. also added settings to turn off this behaviour

This commit is contained in:
David Halter
2012-08-31 20:19:07 +02:00
parent 566c133130
commit 139548d906
2 changed files with 28 additions and 7 deletions

View File

@@ -2,8 +2,17 @@
# completion output settings
# ----------------
# The completion is by default case insensitive.
case_insensitive_completion = True
# Adds a dot after a module, because a module that is not accessed this way is
# definitely not the normal case.
add_dot_after_module = True
# Adds an opening bracket after a function, because that's normal behaviour.
add_bracket_after_function = True
# ----------------
# dynamic stuff
# ----------------