Ondřej Měkota

Results 6 comments of Ondřej Měkota

Video of the behaviour: ![video](https://user-images.githubusercontent.com/19909361/179456399-f4051e29-43c6-4204-bb54-772b706186dc.mov) Also, if I type backspace, and then any key the first suggestion gets automatically selected.

Hello, thank you for suggestion. The parameter types should already work with the `:DocstringTypes` command ``` def foo(A: list[dict[str, str]]) -> int: return 1 ``` would get this docstring: ```...

Sorry, for the delay... 🤔 you are correct, the class docstring does not contain methods (I use google docstring 99% of the time, [which doesn't include it](https://google.github.io/styleguide/pyguide.html#384-classes), so I haven't...

Thank you for the feedback. According to [PEP 257](https://peps.python.org/pep-0257/), "*The docstring for a function or method should summarize its behavior and document its arguments, return value(s), side effects, exceptions raised,...

methods and functions only (in this issue)

# expected behaviour ## 1. before ```{python} def foo(a: str): """ Some description Args: a (str): bar Returns: something """ return 0 ``` ## 2. making changes in function Changes...