Hello
Does anyone know how to select an entire line without selecting the hard return at the end?
selectLine() unfortunately selects the line and the return.
There does not appear to be a key("SHIFT+END") command either.
Welcome to the IDM Forum. This forum is meant as a user-to-user support mechanism where users can share knowledge and tips for all IDM software.
Since these forums are user-to-user based, IDM does not regularly read or reply to the posts in this forum. For problem reports, suggestions, or feature requests, you must email us directly. Our trained technical support staff answers most inquiries within 30 minutes.
String.prototype.nocrlf = function() { return this.replace(/[\r\n]/g, ""); };
UltraEdit.activeDocument.selectLine();
var line = UltraEdit.activeDocument.selection;
UltraEdit.activeDocument.bottom();
UltraEdit.activeDocument.write(line.nocrlf());
UltraEdit.activeDocument.write("-----");

