mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
fixed PY-6995 Extra indents when pasting code with non-rectangle selection between top-level statements
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
c = 1
|
||||
|
||||
class A(object):
|
||||
def foo(self):
|
||||
pass
|
||||
|
||||
def foo(self):
|
||||
pass
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
c = 1
|
||||
|
||||
class A(object):
|
||||
def foo(self):
|
||||
pass
|
||||
<caret>
|
||||
@@ -0,0 +1,5 @@
|
||||
c = 1
|
||||
|
||||
class A(object):
|
||||
<selection>def foo(self):
|
||||
pass</selection>
|
||||
Reference in New Issue
Block a user