i create a script which delete selected lines as in eclipse. I use editor.deleteLine for deleting lines but after updates coming to notepad++ this function change its behaviour. Instead of deleting line, it deletes content of the line. For example
before deleting:
line1
line2
line3
after editor.deleteLine(1)
line1
line3
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
i create a script which delete selected lines as in eclipse. I use editor.deleteLine for deleting lines but after updates coming to notepad++ this function change its behaviour. Instead of deleting line, it deletes content of the line. For example
before deleting:
line1
line2
line3
after editor.deleteLine(1)
line1
line3