Skip to content

Commit 30b6686

Browse files
committed
Deal with different line endings.
1 parent 29b1b82 commit 30b6686

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

Left_pare.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
#
44
# Author: Nguyễn Hồng Quân ([email protected])
55

6+
import eollib
67
from xpcom import components
8+
79
viewSvc = components.classes["@activestate.com/koViewService;1"]\
810
.getService(components.interfaces.koIViewService)
911
view = viewSvc.currentView
@@ -16,13 +18,13 @@
1618
end = sm.getLineEndPosition(sm.lineFromPosition(sm.selectionEnd))
1719

1820
lines = tuple(sm.getTextRange(start, end).splitlines())
19-
# Cut one character from the left
20-
lines = tuple(l[1:] for l in lines)
21+
# Cut one character from the left and combine lines to new text
22+
eol = eollib.eol2eolStr[sm.eOLMode]
23+
text = eol.join(l[1:] for l in lines)
2124

2225
# Select part of document
2326
sm.setSel(start, end)
2427
# Replace selection content
25-
text = '\n'.join(lines)
2628
sm.replaceSel(text)
2729
# Keep selection to let user continue to apply this macro
2830
sm.setSel(start, start+len(text.encode('utf-8')))

Reflow_tower.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
#
66
# Author: Nguyễn Hồng Quân ([email protected])
77

8-
8+
import eollib
99
from xpcom import components
10+
1011
viewSvc = components.classes["@activestate.com/koViewService;1"]\
1112
.getService(components.interfaces.koIViewService)
1213
view = viewSvc.currentView
@@ -50,4 +51,5 @@
5051
# Select part of document
5152
sm.setSel(start, end)
5253
# Replace selection content
53-
sm.replaceSel('\n'.join(lines))
54+
eol = eollib.eol2eolStr[sm.eOLMode]
55+
sm.replaceSel(eol.join(lines))

0 commit comments

Comments
 (0)