I have created an AutoHotKey script for use with TCEdit.
Read more
Code:
; AutoHotKey script to automate the task in TCEdit
#q::ExitApp ; Assign a hotkey to terminate this script
; Hotkey to activate the script (Ctrl+J)
#IfWinActive TCEdit
^j::
; Start the selection from the current line to the next Return statement
Send, +{Down}
; Continue holding Shift and pressing Down until reaching the Return statement
Loop
{
; Send the Down key to move to the next line...
Read more