Jump to the end of next line in Windows applications

Is there any universal keyboard shortcut to jump to the end of the next line in Windows applications? For example, similar to Shift+Down? However, I just want to move cursor; I don't want to highlight anything.

2

1 Answer

If pressing Down, End moves the cursor to the end of the next line, you can define a hotkey using AutoHotkey to simplify the process. For example, if I wanted Alt+Down to do the above, I could write this script:

!Down::SendInput, {Down}{End} 

Also, you can reuse a hotkey for different applications using the #IfWinActive condition. For example, if Down, End moves the cursor to the end of the next line in ApplicationX, but Ctrl+Shift+End does the same in ApplicationY, you can define a new, shared hotkey Alt+Down like so:

SetTitleMatchMode, 2 #IfWinActive, ApplicationX !Down::SendInput, {Down}{End} #IfWinActive, ApplicationY !Down::SendInput, ^+{End} #IfWinActive 

See Also:

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like