Basically I want to show the editor.rulers only when workbench.action.gotoLine is active, is this possible?
I tried searching on google, but couldn't find anything
Related
How can I toggle on and off the display of Type hints in VS Code? For example, I've got the code .remoteOf(ClassServiceClient.class) and what I see is .remoteOf(CLAZZ:ClassServiceClient.class) but I can't actually select or seem to interact with the CLAZZ word.
How do I toggle this on and off? It seems useful in certain situations, but it just makes me think I typoed something.
I'm sure this has been asked before, but I haven't been able to come up with a word that seems to describe this feature.
This feature is called Inlay Hints and can be found under the Editor section.
After this, I've gone from displaying clazz:#Log4J2 to #Log4J2, and have enabled the option to display this hint by holding down a set of keys, ctrl + alt by default on Windows.
Well, I do not StackOverflow this is the best place for my question, but this is where I landed after clicking on "ask questions" in https://code.visualstudio.com/docs/editor/editingevolved
The icons pointed by the arrow are too many: on my 15" notebook, when the editor pane is split, depending on which tab is selected, I cannot read the full titles of three open tabs.
I would like to reduce their number or, if I can't, totally remove them. They have been added by an extension (related to git) that I find very convenient to have, so I would like to keep the extension, but to remove the icons.
I have:
read https://code.visualstudio.com/docs/getstarted/userinterface
read https://code.visualstudio.com/docs/getstarted/themes
looked into settings.json for "icons"
searched stackoverlow
plus many other, mainly random, attempts.
I could not find a way.
Any help?
They're added by GitLens. You can remove them with "gitlens.menus": false in settings.json.
as the title says I'm looking for a way to remove the autoselect code after autocomplete. Currently, the only way to remove the autoselected line is either pressing ESC key or clicking anywhere else. And it's currently giving me issues because it's quite annoying.
I've been searching for a solution for about 3 days and it's either I'm doing it wrong or I don't really know what the issue exactly is... Here's a picture of my issue
As you see in the picture, the code is autoselected/highlighted right after autocomplete and as said I really need help because it's turning annoying.
Thanks in advance.
Set Snippets Prevent Quick Suggestions to false, in text editor > suggestions
Is it possible to customize the colors used by VSC background and text? I've tried all the color themes and none gives me what I need to see text clearly and comfortably. I can't find information on this in the Help, in the menus, or by searching on the Web.
I found the full list of color settings. I would imagine this would be useful to almost every user. It is at https://code.visualstudio.com/api/references/theme-color .
How do I get rid of this underline? When I hover over it, it thinks it's a link and that I can cmd + click it to open it in browser. However, it's obstructing the view of actual underlines.
I'm specifically using Go's templating engine and vscode's basic HTML syntax because it's not supported.
I think I found a solution for your problem.
Add this code to your User Settings;
"editor.links": false
If you want to keep links clickable and just get rid of the underlines, I found a way:
open resources\app\out\vs\workbench\workbench.desktop.main.css
search for .monaco-editor .detected-link, and delete it.
Reopen VSCode, it will show some warning. Allow it and it's done.
After every update, you'll need to edit this file again.