mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
Otherwise if caret is in the middle of reference, standard dummy identifier will break docstring format and existing references used for completion will be lost. For example previously line "param (int) : foo" became "paraIntellijIdeaRulezzz m (int) : foo" and Google code style docstring parser wasn't able to reparse it and extract necessary parameter reference. To use alternative dummy identifier I moved populating completion variants from DocString*Reference classes to PyDocstringCompletionContributor.
5 lines
83 B
Python
5 lines
83 B
Python
def f(param1, param2):
|
|
"""
|
|
Args:
|
|
par<caret>am1: description
|
|
""" |