Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to toggle-off blank space at the bottom of editor in Visual Studio Code

I have a problem when scrolling to the last line of code because there is a huge space at the bottom of page. Does anyone know how to toggle-off?

I googled and found that The Visual Studio Team will not fix this(https://visualstudio.uservoice.com/forums/121579-visual-studio-2015/suggestions/3400674-allow-users-to-toggle-off-blank-space-at-the-botto). Any workaround?

Thank you

enter image description here

like image 918
chinnawatp Avatar asked Nov 20 '16 06:11

chinnawatp


People also ask

How do you remove trailing white spaces in VSCode?

press F1 and select/type "Trailing Spaces: Delete"

How do you get rid of invisible characters in VS code?

In the search bar on the settings page, search for Render Whitespace and with the dropdown that appears select all , this will then show all whitespace characters. From this selection you can also control other whitespace options such as turning off highlighting altogether.

How do you show white space in VS code?

In Visual Studio for Windows, to display whitespace characters (tabs, spaces, etc) you simply press Ctrl + R, Ctrl + W.


1 Answers

In settings, set "editor.scrollBeyondLastLine": false

like image 62
Rob Lourens Avatar answered Sep 29 '22 12:09

Rob Lourens