Closed RyannDaGreat closed 2 years ago
I have the code:
def f(x): print(x) print(y)
but when commenting out the function, it gives
# def f(x): # print(x) # print(y)
It skipped the empty line. I want this:
# def f(x): # print(x) # # print(y)
How do I do this?
Not currently supported.
@tpope But why? Most other editors do this...should I make a pull request?
I have the code:
but when commenting out the function, it gives
It skipped the empty line. I want this:
How do I do this?