sublime_docblockr_python icon indicating copy to clipboard operation
sublime_docblockr_python copied to clipboard

Sublime Text DocBlockr for python. Simplifies writing docstring comments in Python.

Results 9 sublime_docblockr_python issues
Sort by recently updated
recently updated
newest added

Functionality is broken in Sublime Text 4. They changed some APIs, and it uses Python 3.9 now, although I'm unsure of the exact details. Is this project still being maintained?...

sublime console logs show that ignoring plugins in package DocBlockr_Python, version file Packages/DocBlockr_Python/.python-version contains an invalid version: "3.4.3\n" after change the version to `3.3`, it is back to work. Should...

When the first version of a function takes some parameters, it generates the right docstring, that we just have to complete. However, if we change the function by adding/removing parameter(s),...

For functions with multi-line parameters, docblockr cannot recognize parameters and generates only `[summary]` and `[description]` as the picture shows. After moving `):` back by 4 or more spaces, it shows...

How to reproduce ------------------ **`_` denotes the cursor location.** ```python def f(a): """_ ``` Now type ``. It becomes: ```python def f(a): """[summary] [description] :param a: [description] :type a: [type]...

Hi. I want to use `sphinx` formatter but I don't want the `:type param: ...`, `:rtype: ...`, etc., since I already put these info in type annotations. Therefore, I write...

The following function: ``` def foo(bar): return "hello" + bar ``` results in: ``` """[summary] [description] :param bar: [description] :type bar: [type] """ ``` should be: ``` """[summary] [description] :param...

When creating docstrings from scratch using """ + enter under a function for example, the docstring created has whitespaces between [summary] and [description] and [description] and Returns, any way i...

bug

This plugin stopped working. Hitting enter after """ does not result in a docstring anymore