Menu

[b84aab]: / plugins / comment_in.bas  Maximize  Restore  History

Download this file

31 lines (25 with data), 507 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
'tool-plug-in
'menu Comment Out Region
split command, "|", args() use trim(x)
local inbuf, outbuf
fname = args(0)
row = args(1)
col = args(2)
s1_row = args(3)
s1_col = args(4)
s2_row = args(5)
s2_col = args(6)
tload fname, inbuf
buflen = len(inbuf)
for i = 0 to buflen-1
if (i = buflen-1 && len(inbuf(i)) = 0)
exit for
fi
if (i => s1_row && i < s2_row)
outbuf << "'"+inbuf(i)
else
outbuf << inbuf(i)
fi
next i
tsave fname+".bak", inbuf
tsave fname, outbuf
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.