Automatic scoll down when updating a document (VS code)

Since VS Code can automatically update a document when it is changed externally, I would like to scroll down to the last line automatically. I am sure that this function worked on previous versions, but now I did not find the entry in the settings to enable it.

This is useful for monitoring the log file during recording.

Can I enable this feature?

+4
source share
2 answers

So, for this I created a VS Code extension called autoscrolldown .

The construction of the most expensive world tail -f!

+1
source

You can use key bindings to scroll to the bottom of the file:

{
  "command": "workbench.action.terminal.scrollToBottom",
  "key": "ctrl+end",
  "when": "terminalFocus"
}

CTRL - End

.

+1

Source: https://habr.com/ru/post/1687007/


All Articles