Skip to content

Commit 54f30f6

Browse files
committed
WIP: improve selection of environments
1 parent e2abec2 commit 54f30f6

File tree

3 files changed

+86
-18
lines changed

3 files changed

+86
-18
lines changed

autoload/jedi.vim

+17
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ let s:default_settings = {
3636
\ 'quickfix_window_height': 10,
3737
\ 'force_py_version': "'auto'",
3838
\ 'smart_auto_mappings': 0,
39+
\ 'use_environment': "'auto'",
40+
\ 'environment_paths': '[]',
3941
\ 'use_tag_stack': 1
4042
\ }
4143

@@ -289,6 +291,14 @@ call jedi#init_python() " Might throw an error.
289291
" ------------------------------------------------------------------------
290292
" functions that call python code
291293
" ------------------------------------------------------------------------
294+
function! jedi#use_environment(...) abort
295+
PythonJedi jedi_vim.set_environment(*vim.eval('a:000'))
296+
endfunction
297+
298+
function! jedi#use_environment_for_buffer(env) abort
299+
PythonJedi jedi_vim.set_environment(*vim.eval('[env, bufnr("%")]'))
300+
endfunction
301+
292302
function! jedi#goto() abort
293303
PythonJedi jedi_vim.goto(mode="goto")
294304
endfunction
@@ -753,6 +763,13 @@ function! jedi#setup_completion() abort
753763
endif
754764
endfunction
755765

766+
" TODO: fallback to completing files (i.e. return known envs first, then
767+
" files?!).
768+
function! jedi#complete_environments(argl, cmdl, pos) abort
769+
PythonJedi jedi_vim.complete_environments()
770+
EOF
771+
endfunction
772+
756773
"PythonJedi jedi_vim.jedi.set_debug_function(jedi_vim.print_to_stdout, speed=True, warnings=False, notices=False)
757774
"PythonJedi jedi_vim.jedi.set_debug_function(jedi_vim.print_to_stdout)
758775

plugin/jedi.vim

+16
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,22 @@ function! s:jedi_debug_info()
6868
call jedi#debug_info()
6969
endfunction
7070
command! -nargs=0 -bar JediDebugInfo call s:jedi_debug_info()
71+
72+
" Transfer bang into current buffer number.
73+
" TODO: use window instead!?
74+
function! s:use_environment(bang, env) abort
75+
let bufnr = a:bang ? +bufnr('%') : 0
76+
if a:env ==# 'auto'
77+
let env = ''
78+
elseif a:env[-4:] ==# ' (*)'
79+
let env = a:env[:-5]
80+
else
81+
let env = a:env
82+
endif
83+
return jedi#use_environment(env, bufnr)
84+
endfunction
85+
command! -bang -nargs=? -complete=custom,jedi#complete_environments JediUseEnvironment :call s:use_environment(<bang>0, <q-args>)
86+
7187
command! -nargs=0 -bang JediClearCache call jedi#clear_cache(<bang>0)
7288

7389
" vim: set et ts=4:

pythonx/jedi_vim.py

+53-18
Original file line numberDiff line numberDiff line change
@@ -211,49 +211,84 @@ def wrapper(*args, **kwargs):
211211
return func_receiver
212212

213213

214+
# XXX: might use lru cache, given that you can configure it per buffer?!
214215
current_environment = (None, None)
215216

216217

218+
def set_environment(executable=None, bufnr=None):
219+
global current_environment
220+
221+
# print(repr(executable), repr(bufnr))
222+
223+
if not executable: # "unset"
224+
executable = 'auto'
225+
environment = None
226+
else:
227+
try:
228+
# XXX: create_environment is not deterministic
229+
# (https://github.com/davidhalter/jedi/issues/1155)
230+
# jedi.create_environment(executable, safe=False)
231+
environment = jedi.api.environment.Environment(executable)
232+
except jedi.InvalidPythonEnvironment as exc:
233+
echo_highlight('executable=%s is not supported: %s.' % (
234+
executable, str(exc)))
235+
return
236+
bufnr = int(bufnr)
237+
if bufnr:
238+
vim_command("call setbufvar(%d, 'jedi_use_environment', %r)" % (
239+
bufnr, executable))
240+
else:
241+
vim_command("let g:jedi#use_environment = %r" % executable)
242+
current_environment = (executable, environment)
243+
244+
217245
def get_environment(use_cache=True):
218246
global current_environment
219247

220-
vim_force_python_version = vim_eval("g:jedi#force_py_version")
221-
if use_cache and vim_force_python_version == current_environment[0]:
248+
use_environment = vim_eval(
249+
"get(b:, 'jedi_use_environment', get(g:, 'jedi#use_environment', ''))")
250+
if use_cache and use_environment == current_environment[0]:
222251
return current_environment[1]
223252

224253
environment = None
225-
if vim_force_python_version == "auto":
254+
if use_environment == "auto":
226255
environment = jedi.api.environment.get_cached_default_environment()
227256
else:
228-
force_python_version = vim_force_python_version
229-
if '0000' in force_python_version or '9999' in force_python_version:
230-
# It's probably a float that wasn't shortened.
231-
try:
232-
force_python_version = "{:.1f}".format(float(force_python_version))
233-
except ValueError:
234-
pass
235-
elif isinstance(force_python_version, float):
236-
force_python_version = "{:.1f}".format(force_python_version)
237-
238257
try:
239-
environment = jedi.get_system_environment(force_python_version)
258+
# XXX: create_environment is not deterministic
259+
# (https://github.com/davidhalter/jedi/issues/1155)
260+
# jedi.create_environment(executable, safe=False)
261+
environment = jedi.api.environment.Environment(use_environment)
240262
except jedi.InvalidPythonEnvironment as exc:
241263
environment = jedi.api.environment.get_cached_default_environment()
242264
echo_highlight(
243-
"force_python_version=%s is not supported: %s - using %s." % (
244-
vim_force_python_version, str(exc), str(environment)))
265+
'use_environment=%s is not supported: %s - using %s.' % (
266+
use_environment, str(exc), str(environment)))
245267

246-
current_environment = (vim_force_python_version, environment)
268+
current_environment = (use_environment, environment)
247269
return environment
248270

249271

250272
def get_known_environments():
251273
"""Get known Jedi environments."""
252-
envs = list(jedi.api.environment.find_virtualenvs())
274+
paths = vim_eval("g:jedi#environment_paths")
275+
envs = list(jedi.api.environment.find_virtualenvs(paths=paths, safe=False))
253276
envs.extend(jedi.api.environment.find_system_environments())
254277
return envs
255278

256279

280+
def complete_environments():
281+
envs = get_known_environments()
282+
try:
283+
current_executable = current_environment[1].executable
284+
except AttributeError:
285+
current_executable = None
286+
vim.command("return '%s'" % '\n'.join(
287+
('%s (*)' if env.executable == current_executable else '%s') % (
288+
env.executable
289+
) for env in envs))
290+
291+
257292
@catch_and_print_exceptions
258293
def get_script(source=None, column=None):
259294
jedi.settings.additional_dynamic_modules = [

0 commit comments

Comments
 (0)