rc jedi: Don't create an unused debug/log file

This commit is contained in:
Frank LENORMAND 2017-06-09 14:07:00 +03:00
parent 813d09a101
commit d113d5232a

View File

@ -24,7 +24,6 @@ def jedi-complete -docstring "Complete the current selection" %{
print(':'.join([(str(c.name).replace("|", "\\|") + "|" + str(c.docstring()).replace("|", "\\|")).replace(":", "\\:") + "|" + str(c.name).replace("|", "\\|") for c in script.completions()]).replace("'", r"\\\\'"))
END
)
printf %s\\n "${compl}" > /tmp/kak-jedi-out
printf %s\\n "eval -client ${kak_client} 'echo completed; set %{buffer=${kak_buffile}} jedi_completions \'${header}:${compl}\''" | kak -p ${kak_session}
rm -r ${dir}
) > /dev/null 2>&1 < /dev/null &