python-docstring-highlighter icon indicating copy to clipboard operation
python-docstring-highlighter copied to clipboard

Syntax highlighting for Python Docstring in VSCode.

Results 8 python-docstring-highlighter issues
Sort by recently updated
recently updated
newest added

I just installed it but it's not working. Do I need to press some key combo or something? I didn't see any mentions to this. I might be doing something...

Using the google docstring format, the return type is not properly highlighted when using type hints from the typing package. Also should the return type not be highlighted as the...

enhancement
question

![image](https://github.com/user-attachments/assets/ddfa7f29-6d39-456c-b308-06f36c733033) ```python def shell_exec(*, args:list[str]|str, timeout: int = 150) -> tuple[CommandOutput, list[str]|None]: """Execute a shell command with subprocess. Args: args: Command and arguments to execute. timeout: Maximum time in seconds...

question

Does not properly recognise the 'See Also' section of the numpy format because the header has a space in it. Also, for instances where a parameter description is multiple lines,...

enhancement

Snippet: ```python def test(): """Docstring for test :return: Description :rtype: Literal[25]""" return 25 test() ``` Without python docstring highlighter: ![Image](https://github.com/user-attachments/assets/9decc46f-7b59-4e8a-83a2-0e080796f236) With python docstring highlighter (note that `return` and `test()` are...

The plugin doesn't highlight common syntax issues such as indentation. this is shown in the pictures below as both examples show the same highlighting in spite of the different indentation....

Hi. Thanks for this extension. I've recently been working with Google style for docstrings, which produces very condensed and not very readable documentation, as opposed to the Numpy style. It...

Thanks a lot for this vscode extension. This PR enables the recognition of Greek characters in the arguments of functions and attributes of classes. **without the regex changes introduced in...