mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
Use indent based on caret position only when we're pasting neither inside existing statement list (e.g. in the middle of a function), nor inside empty statement list
11 lines
153 B
Python
11 lines
153 B
Python
class C:
|
|
def empty(self):
|
|
|
|
def another(self):
|
|
<selection> """
|
|
line 1
|
|
line 2
|
|
"""
|
|
pass
|
|
</selection>
|