I find the screen divider bar (sash) hard to grab in VS Code. The vertical divider bar to resize VS Code split window is very hard to locate with the mouse, because the mouse pointer does not change to double arrow, and the fade is too slow. You have to pause on top of 3 or 4 pixels to get the blue line to show.
Is there a setting to reduce the fade in delay for the vertical bar (sash)?
>Solution :
Put the following in your settings.json file:
"workbench.sash.hoverDelay": 0,
The setting’s description:
Controls the hover feedback delay in milliseconds of the dragging area in between views/editors.
See also the workbench.sash.size
setting.