File tree 2 files changed +9
-5
lines changed
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 3
3
#
4
4
# Author: Nguyễn Hồng Quân ([email protected] )
5
5
6
+ import eollib
6
7
from xpcom import components
8
+
7
9
viewSvc = components .classes ["@activestate.com/koViewService;1" ]\
8
10
.getService (components .interfaces .koIViewService )
9
11
view = viewSvc .currentView
16
18
end = sm .getLineEndPosition (sm .lineFromPosition (sm .selectionEnd ))
17
19
18
20
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 )
21
24
22
25
# Select part of document
23
26
sm .setSel (start , end )
24
27
# Replace selection content
25
- text = '\n ' .join (lines )
26
28
sm .replaceSel (text )
27
29
# Keep selection to let user continue to apply this macro
28
30
sm .setSel (start , start + len (text .encode ('utf-8' )))
Original file line number Diff line number Diff line change 5
5
#
6
6
# Author: Nguyễn Hồng Quân ([email protected] )
7
7
8
-
8
+ import eollib
9
9
from xpcom import components
10
+
10
11
viewSvc = components .classes ["@activestate.com/koViewService;1" ]\
11
12
.getService (components .interfaces .koIViewService )
12
13
view = viewSvc .currentView
50
51
# Select part of document
51
52
sm .setSel (start , end )
52
53
# Replace selection content
53
- sm .replaceSel ('\n ' .join (lines ))
54
+ eol = eollib .eol2eolStr [sm .eOLMode ]
55
+ sm .replaceSel (eol .join (lines ))
You can’t perform that action at this time.
0 commit comments