VS Code Automatic horizontal scroll when mouse over editor - visual-studio-code

I have a problem where when I move my mouse cursor over the editor in vs code. It scrolls automatically to end of line, it started when vs code was updated. i checked all of my extensions and disabled them all. and still it happens. Not only when my project files are open but when any config for anything in vs code (including vs code settings). It happened before but went away when I fiddled with editor word warp and disabled horizontal scroll but it wont go away now. Please help I don't know what to do and its driving me nuts to the point I cant work on anything now.

Related

VS Code outline on opening workspace

On pretty much every project I work on in VS Code, I like to have the code outline present, but I can't seem to figure out how to get that part of the window activated on startup. At the moment, I have to manually activate the Outline panel. Is there a method, maybe in the settings.json, that will automatically enable the Outline panel on startup?

Scrolling has broken in the eclipse

I use SW4STM32 (Neon.3 Release (4.6.3)) and at some point in time scrolling stopped working in the text editor when using the mouse wheel. CTRL+ mouse wheel works fine, but it doesn't fit at all, because it scrolls too much.
Please tell me where it is configured, I searched the entire menu and did not find it.

need to move intellisense popup window in visual studio code

I want to move the intellisense popup window to the left side.
How can I do this?
I tried this solution but it did not help me.
How to make VSCode Intellisense window wider
change width
For adjusting the width, you can drag the right side of the window now, see this SO post for an old animation.
On mac the right of the popup will turn blue when hovered (cursor isn't captured in screenshot) and can be resized. You can also resize vertically by hovering the bottom. It looks like this on mac (not sure about other OS):
change position
The new version (October 2021 (version 1.62)) makes it easy to move the position... sort of. You can now choose to have the editor above or below what you hover. So glad they added it as a feature. This wasn't exactly the problem you had, but when I first searched for moving the intellisense menu, it led me here, so figured I'd add this for others Google sends here.
Simply add the following to settings.json file:
"editor.hover.above": false
Add a comma after it if you have more settings below it:
"editor.hover.above": false,
"editor.minimap.enabled": false
You can try to configure intellisense within VScode using the steps in https://code.visualstudio.com/docs/editor/intellisense#_customizing-intellisense, though I am not sure if your particular issue could be solved this way.

Screen is broken when another window is displayed on top of vscode

While using Visual Studio Code, the screen is broken as shown in the following gif.
It is not visible in the gif file, but is being dragged with the another window open.
The same thing did not happen in other programs (e.g., visual studio community, source tree, etc.).
It also happened on other monitors connected to internal graphics cards.
When scrolling in vscode, the same symptoms occur in the parts that are not scrolling (such as the left menu section).
Updating the graphics card driver(geforce) fixed the problem
go to your vs code shortcut properties and add at the end of the path "--disable-gpu" example like these: "C:\Users\your-user\AppData\Local\Programs\Microsoft VS Code\Code.exe" --disable-gpu

VS Code's documentation/intellisense popup disappears on mouse over

I am having a problem scrolling through the pop up box after hovering over a variable. It just disappears. I want to be able to scroll through it.
I am on Windows 10 x64 using Visual Studio Code 1.41.1 with Python Extension
Set editor.hover.sticky to true.
Via settings.json:
"editor.hover.sticky": true
Via Settings UI:
As a result of Keep hover visible when the mouse is getting closer to it, in my testing in the Insiders Build v1.72 this is much better. It should be in Stable v1.72 early October, 2022.
From the 1.72 Release Notes
Improved hover
The editor hover used to be quite aggressive in hiding itself,
especially when the mouse was going over an empty area of the editor.
This would make it very difficult to reach some of the actions shown
in the hover. Now, the hover will stay visible as long as the mouse is
moving towards it. The setting "editor.hover.sticky": false will
continue to work as before:
[The Editor > Hover: Sticky setting isn't the real problem, the problem is that the hover disappears before you even get the mouse to it.]