Quantcast
Viewing all articles
Browse latest Browse all 1748

TCEdit - Selecting Blocks of Code

I have created an AutoHotKey script for use with TCEdit.

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

Viewing all articles
Browse latest Browse all 1748

Trending Articles