This question already has answers here:
Does anybody know the name of this setting inside of VS Code Insiders? For grayed out parameter and variable annotations
(2 answers)
Closed last month.
I don't know where in the settings are the option to remove the "index:" inside the red box in the image. the image with the red box
I looked through all the Text Editor settings in Vs Code but didn't find any option that solve the problem. I expect that someone know where is this option.
"inlay hints" has been enabled by default you can go to setting then type "inlay hints".
you can enable or disable it
Related
This question already has answers here:
Enable or disable VS Code Integrated Terminal Tabs?
(5 answers)
Closed 1 year ago.
This post was edited and submitted for review 1 year ago and failed to reopen the post:
Original close reason(s) were not resolved
I am absolutely new to Vscode and i dont know how to configure it.
and when i first installed vscode the terminal tabs looked like this
But it looks like this now
Please can anyone tell me how to get back ui design of the tab selection and how did this happen.
Open your JSON settings and set:
"terminal.integrated.tabs.enabled": false
Or disable it in the settings UI page:
I think you need to remove installed theme.
Please review below link to find solution:
click here
I have just downloaded WebStorm 2016.1 for Mac OS X. I would like to configure my editor fonts and colorus.
I understand that you must save the scheme before it becomes editable. This I have done:
but the options still remain unavailable.
Is this a limitation of the trial or something? What have I missed? I have applied the style, and have even closed down WebStorm and re-opened.
If certain style (e.g. "Doc comment" on your screenshot) has Use inherited attributes option checked .. then it re-uses colors from parent option (which is displayed just below it).
The solution is simple:
either edit parent style
or uncheck that Use inherited attributes option and edit your colors here
P.S.
Trial version has NO limitation in functionality.
This question already has answers here:
Visual Studio 2015 tooltip color
(2 answers)
Closed 7 years ago.
I just upgraded to Visual Studio 2015. My tool tips used to be boring (and readable) black text on a white background. Now, colors that apply to tokens in the code window apparently apply here, too. I've been through the list of choices half a dozen times and can't figure out which one controls the background of this popup window, illustrated below. Which settings should I look at? And I suppose, a follow-up question would be "what do I call this popup window?", as I suspect knowing that name would have answered my question.
The popup window is called "Editor Tooltip" but I'm afraid you only can edit the 'Plain text'-part of the window, in your case "local variable". I'm afraid your best bet is to go with the Visual Studio 2015 Color Theme Editor link
This question already has an answer here:
How to extend Windows Explorer with a custom panel
(1 answer)
Closed 8 years ago.
Is there a way to create a custom right (or bottom) pane attached to a window in explorer as in the image below?
I was already able to add a button as you can check in the picture.
I already searched but didn't find any example for panels.
Can anyone give me some hints?
thanks
Is possible using Explorer Bar.
http://msdn.microsoft.com/en-us/library/windows/desktop/cc144099(v=vs.85).aspx
This question already has answers here:
Xcode spell checking
(8 answers)
Closed 7 years ago.
Is there a way to enable spell checking in xcode (maybe and add-on) that does spell checking only inside comments and not in code? (like vim/emacs spell checker).
I have tried what is described in this answer but it seems check the entire document since it complains about some variable names and macros (which I obviously don't want to spell check).
Xcode 4 also includes a new Fix-It feature, which is basically a spell-checker for code. It highlights your mistakes, and with the press of the "Fix" button, the problem is solved.
It just shows you a red circle on the line number that you have to click to get the fix it suggestions. You can use a keyboard shortcut to do the fixing at least. Here is the "Fix all in scope" key bind.
Fix Next Issue:
control + Command + '
Fix Previous Issue:
control + Command + "
Fix All In Scope:
control + Command + F
The closest thing I've been seen that shows errors as you type is to switch to issue navigator and leave that on.
Here is a guide on the issue navigator. http://developer.apple.com/library/ios/#recipes/xcode_help-issue_navigator/articles/viewing_issues_in_the_issue_navigator.html Hope this helped.