-
Notifications
You must be signed in to change notification settings - Fork 37.6k
Closed
Labels
*caused-by-extensionIssue identified to be caused by an extensionIssue identified to be caused by an extension
Description
- VS Code Version: 1.54.1
- OS Version: macOS 11.2.3
Steps to Reproduce:
- Given the following documented code:
def foo(a, b):
""" Do something on a and b
:param a: the first argument; this one's pretty
interesting and requires two lines.
:param b: the second argument
:return: a + b
"""
return a + bhovering over the function will split the description of the a parameter:

- When I remove the indent preceding "interesting":
def foo(a, b):
""" Do something on a and b
:param a: the first argument; this one's pretty
interesting and requires two lines.
:param b: the second argument
:return: a + b
"""
return a + bhovering will show this instead:

- I expect the hover help documentation of parameters/return values with a leading indent (Example 1 above) to treat that indent as a single whitespace (and thus produce something like Example 2 above).
Does this issue occur when all extensions are disabled?: Yes
Metadata
Metadata
Assignees
Labels
*caused-by-extensionIssue identified to be caused by an extensionIssue identified to be caused by an extension