forked from VimPlug/jedi
added filesystem cache options
This commit is contained in:
@@ -22,6 +22,13 @@ Completion output
|
|||||||
.. autodata:: no_completion_duplicates
|
.. autodata:: no_completion_duplicates
|
||||||
|
|
||||||
|
|
||||||
|
Filesystem cache
|
||||||
|
~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
.. autodata:: jedi_cache_directory
|
||||||
|
.. autodata:: use_fs_cache
|
||||||
|
|
||||||
|
|
||||||
Parser
|
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.
|
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
|
# parser
|
||||||
# ----------------
|
# ----------------
|
||||||
|
|||||||
Reference in New Issue
Block a user