I know this is completely unreasonable feature for a text editor to have, however, when I edit various files, I almost always have to do it at the end of the file.

Is there a feature in Notepad++ that will move the cursor, caret and focus to the bottom of the file?

Or perhaps open Notepad++ with a command-line parameter that forces cursor to the bottom

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

No. But you have two options:

  • Notepad++ is GNU. Get the sources, patch, build.
  • Open the file, hit Ctrl+End
link|improve this answer
Ctrl+End is reasonable easy and convenient. – deddebme Oct 22 '09 at 18:08
feedback

If you open files from a shortcut or command line, you can add flags to specify the line number and column to place the cursor, e.g.

"notepad++.exe" -n12 -c34 license.txt

(note no spaces between -n/-c and line/column numbers).

To open the file at the bottom, use a very large line number, e.g.

"notepad++.exe" -n999999 filename
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.