Files
openide/python/testData/surround/CustomFoldingRegionLastMethod.py
Mikhail Golubev 00f379ed9d PY-11357 Make automatic surrounding with custom folding comments more robust
* Searching of first parental PSI elements before/after new line
correctly stops at the start/end of file. As result it's possible now
to surround element at the first/last line in the file.
Also corresponding traversal does not try to climb above PSI file.
* Even single character can be selected in first place.
* In languages that uses indentation to delimit blocks (like Python)
several consequent sibling statements can be surrounded even if the last
of them is at the end of its parent.
2014-11-07 14:39:31 +03:00

15 lines
324 B
Python

class ThisIsATest():
def __init__(self):
self.test = 1
def another_one(self):
print "Hello, world!"
def another_two(self):
print "Hello, world!"
def another_three(self):
print "Hello, world!"
<selection>def another_four(self):
print "Hello, world!"</selection>