We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
_ denotes the cursor location.
_
def f(a): """_
Now type <Enter>. It becomes:
<Enter>
def f(a): """[summary] [description] :param a: [description] :type a: [type] """
Now [summary] is selected. Typing <Tab> four times, the cursor should jump to:
[summary]
<Tab>
def f(a): """[summary] [description] :param a: [description] :type a: [type] """_
To continue writing, one would type <Enter>. However, it renders:
def f(a): """[summary] [description] :param a: [description] :type a: [type] """[summary] [description] :param a: [description] :type a: [type] """
with the second [summary] selected.
The last <Enter> in the previous example should trigger only an "Enter" rather than insert another block of docstring.
Type Ctrl-<Enter> instead. However, this seems awkward as it breaks normal workflow.
Ctrl-<Enter>
Sublime Text Build 3200
sphinx
Thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
How to reproduce
_
denotes the cursor location.Now type
<Enter>
. It becomes:Now
[summary]
is selected. Typing<Tab>
four times, the cursor should jump to:To continue writing, one would type
<Enter>
. However, it renders:with the second
[summary]
selected.Expected behavior
The last
<Enter>
in the previous example should trigger only an "Enter" rather than insert another block of docstring.Current workaround
Type
Ctrl-<Enter>
instead. However, this seems awkward as it breaks normal workflow.Version and formatter
Sublime Text Build 3200
sphinx
Thanks.
The text was updated successfully, but these errors were encountered: