Merge branch 'patch-1' of https://github.com/dzamo/kakoune
This commit is contained in:
commit
3b147bca0a
|
@ -26,8 +26,8 @@ define-command jedi-complete -docstring "Complete the current selection" %{
|
|||
export PYTHONPATH="$kak_opt_jedi_python_path:$PYTHONPATH"
|
||||
compl=$(python 2> "${dir}/fifo" <<-END
|
||||
import jedi
|
||||
script=jedi.Script(open('$dir/buf', 'r').read(), $kak_cursor_line, $kak_cursor_column - 1, '$kak_buffile')
|
||||
print(' '.join(["'" + (str(c.name).replace("|", "\\|") + "|info -style menu %!" + str(c.docstring()).replace("|", "\\|").replace("!", "!!") + "!|" + str(c.name).replace("|", "\\|")).replace("~", "~~").replace("'", "''") + "'" for c in script.completions()]))
|
||||
script=jedi.Script(code=open('$dir/buf', 'r').read(), path='$kak_buffile')
|
||||
print(' '.join(["'" + (str(c.name).replace("|", "\\|") + "|info -style menu %!" + str(c.docstring()).replace("|", "\\|").replace("!", "!!") + "!|" + str(c.name).replace("|", "\\|")).replace("~", "~~").replace("'", "''") + "'" for c in script.complete(line=$kak_cursor_line, column=$kak_cursor_column)]))
|
||||
END
|
||||
)
|
||||
printf %s\\n "evaluate-commands -client ${kak_client} %~echo completed; set-option %{buffer=${kak_buffile}} jedi_completions ${header} ${compl}~" | kak -p ${kak_session}
|
||||
|
|
Loading…
Reference in New Issue
Block a user