Fix added_sys_path default setting

This commit removes the inner string quotation of the default value for the
added_sys_path setting. The inner quotes cause the value of the resulting
variable g:jedi#added_sys_path to be the sting "[]" instead of an empty list.
This commit is contained in:
Thomas Blauth
2022-01-16 18:33:29 +01:00
parent 030211555d
commit 64c92771be
2 changed files with 2 additions and 1 deletions

View File

@@ -55,5 +55,6 @@ Brian Mego (@brianmego)
Stevan Milic (@stevanmilic) <stevan.milic@yahoo.com> Stevan Milic (@stevanmilic) <stevan.milic@yahoo.com>
Konstantin Glukhov (@Konstantin-Glukhov) Konstantin Glukhov (@Konstantin-Glukhov)
Seungchan An (@SeungChan92) <dev.issea1015@gmail.com> Seungchan An (@SeungChan92) <dev.issea1015@gmail.com>
Thomas Blauth (@ThomasBlauth) <thomas.blauth@protonmail.com>
@something are github user names. @something are github user names.

View File

@@ -36,7 +36,7 @@ let s:default_settings = {
\ 'quickfix_window_height': 10, \ 'quickfix_window_height': 10,
\ 'force_py_version': "'auto'", \ 'force_py_version': "'auto'",
\ 'environment_path': "'auto'", \ 'environment_path': "'auto'",
\ 'added_sys_path': "'[]'", \ 'added_sys_path': '[]',
\ 'project_path': "'auto'", \ 'project_path': "'auto'",
\ 'smart_auto_mappings': 0, \ 'smart_auto_mappings': 0,
\ 'use_tag_stack': 1 \ 'use_tag_stack': 1