kobarity 于2024年1月21日周日 17:34写道: > Is it possible to allow completion of keyword arguments in a > multi-line function call like the following? > > #+begin_src python > re.split( > 'b', > 'abc', > maxs > #+end_src I have added experimental support in the attached patch, can you test it please? > I am not sure if Python snippets should be separated. Do other > language supports keep them separate? I think it allows to reduce code duplication (e.g. the IPython support code existing in both python-shell-completion-setup-code and python-shell-readline-ipython-setup-code) and make code more simple. It seems other languages do not contain as many code snippets as python.el.