# [Quicky] VScode: stickyScroll

On a long file or method, it is nice to see where you are at a glance (see the discontinued line number).

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1707956969064/6e03b65f-4285-44af-9146-64870af75c44.png align="center")

It's possible with `stickyScroll`. The default contrast is low but you can change them in `colorCustomizations`.

```json
// settings.json
    "editor.stickyScroll.enabled": true,
    "workbench.colorCustomizations": {
        "editorStickyScroll.background": "#5d5252",
        "scrollbar.shadow": "#fcfcfc"
    }
```
