How to go to the bottom of the file on startup in Notepad++
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Techno Bleepage Open
--
Chapters
00:00 How To Go To The Bottom Of The File On Startup In Notepad++
00:24 Accepted Answer Score 29
00:37 Answer 2 Score 9
01:01 Answer 3 Score 2
01:28 Answer 4 Score 1
01:51 Thank you
--
Full question
https://superuser.com/questions/58928/ho...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#notepad++ #eof
#avk47
ACCEPTED ANSWER
Score 29
No. But you have two options:
- Notepad++ is GNU. Get the sources, patch, build.
- Open the file, hit Ctrl+End
ANSWER 2
Score 9
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
ANSWER 3
Score 2
You can not only see the updated file but also always shift to the updated line i.e. e.o.f. like in case of viewing logs.
Settings -> Preferences -> MISC
Tick **Update silently**
Tick **scroll to the last line after update**.
ANSWER 4
Score 1
the Notepad++ has a superb useful command line parameter -monitor You just start it in the prompt:
c:\> notepad++ -monitor d:/temp/monitor_me.log
It opens (or creates) a file, and starts probing it several times per second. When it detects that the file was changed, it updates the screen with the changes and tries scrolling to the end.