[Quicky] VScode: stickyScroll
![[Quicky] VScode: stickyScroll](/_next/image?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1709097858787%2F0b6d5d0c-5b59-40c7-b0f1-c5daa95f7209.png&w=3840&q=75)
On a long file or method, it is nice to see where you are at a glance (see the discontinued line number).

It's possible with stickyScroll. The default contrast is low but you can change them in colorCustomizations.
// settings.json
"editor.stickyScroll.enabled": true,
"workbench.colorCustomizations": {
"editorStickyScroll.background": "#5d5252",
"scrollbar.shadow": "#fcfcfc"
}
