1
0
forked from VimPlug/jedi

added filesystem cache options

This commit is contained in:
David Halter
2013-01-10 10:32:47 +01:00
parent cf22a08d0a
commit cc3168ee0a

View File

@@ -22,6 +22,13 @@ Completion output
.. autodata:: no_completion_duplicates
Filesystem cache
~~~~~~~~~~~~~~~~
.. autodata:: jedi_cache_directory
.. autodata:: use_fs_cache
Parser
~~~~~~
@@ -103,6 +110,20 @@ If set, completions with the same name don't appear in the output anymore,
but are in the `same_name_completions` attribute.
"""
# ----------------
# Filesystem cache
# ----------------
use_filesystem_cache = True
"""
Use filesystem cache to save once parsed files with pickle.
"""
jedi_cache_directory = '~/.jedi'
"""
The path where all the caches can be found.
"""
# ----------------
# parser
# ----------------