i want to simulate a Netbeans feature. I want to be able to duplicate the selected LINES. (not the selected text).
I have written the following AutoHotkey macro
DuplicateDown()
{
SetKeyDelay, -1
Temp := ClipboardAll
Clipboard =
Send {Home}+{End}^c
ClipWait, 2
Send {End}{Enter}%Clipboard%
Clipboard := Temp
}
Problem is that this macro only copies the current line. and i want to be able to copy multiple selected lines.
Can you please advise me how to accomplish this.