How to make the VS Code PowerShell integrated console commands code the same color as the color theme in VS Code - vscode-extensions

I've been trying to find if there is a way to make the PowerShell integrated console commands code the same color as the color theme in VS Code.
So far everything I've found has only been about the theme colors for code inside files but nothing about changing the integrated console code colors. I'm not even sure if this is possible inside the integrated PowerShell console.

I would have expected that you could change the colours using the Set-PSReadLineOption command as you can in the terminal but whilst Get-ReadLineOption returns results Set-PsReadLineOption does not change the colours so I expect that it is not possible
Also you won't be able to match the formatting exactly anyway as the colours available in Set-PsReadlineOption and the options are not compatible

Related

Text Colors in VSC Editor and Terminal - Atom One Theme

Why does VSC (Intellisense?) not recognize certain functions/variables in the Python environment? (see the underlined text in the attached photo). It's working fine for C (using C/C++ extension), otherwise. I am using the Atom One theme and for the C environment every word/command seems to have some color. I tried reinstalling the extensions and going through the settings the best I could, but I can't figure it out.
As a side question, why do I get colored paths in Terminal on my Windows machine (see bottom part of the attached picture), but not on my Mac? Is there some default setting for this that's activated only on Windows? I am a fan of it and I'd like to get my Mac showing some colors too.
Mac:
Regarding the terminal text colors, I found the solution here: Color theme for VS Code integrated terminal.
And here, for more detailed info: https://code.visualstudio.com/api/references/theme-color
As far as variable colors changes for Python, this was useful: Make VSCode Variables have Colour

Customize table output Jupyter Notebook VS code

I have problems visualising tables created with Numpy on VS code:
As you can see the contrast is very poor. Any suggestion on how to tune its appearance?
This should accomplish what you're looking for, but might not be the most elegant solution:
File > Preferences > Settings (or use shortcut Ctrl+, on Windows)
Paste #ext:ms-python.python data science ignore vscode theme into the search box
Toggle Ignore Vscode Theme checkbox to ON
Restart VS Code
The contrast issue will hopefully be fixed by VS Code now using a light theme for all Jupyter Notebooks.

Is there a way to log output from creating a React Native project somewhere to use as reference?

I create React Native projects with react-native init and it outputs many lines in my console. Often there will be a bunch of warnings or errors that I want to work through one at a time, and would like to keep the logged output in a separate file.
What I've Tried:
I just copy-pasted the logged output into a file in VsCode. The problem is that it pastes as plain text by default, and doesn't have the informative colors that the console has (red for error, yellow for warning, etc).
What I Want To Know:
Is there a way I can format the text (ie. "Select Language Mode") in VsCode such that it have those informative colors? And is there a way I can automatically re-direct my console output to a file with this language mode preferences automatically set?

Change style of PivotItemHeader

I currently try to change the visual style of my pivot control in UWP.
I would like to change the plain default style of "just text" to something like this:
This is just an example I quickly found on the web. But it is a good representation of what I want to achieve.
I would like to make the pivot items to look like they are tabs.
They should be visibly seperated from another and when one of the items is selected I want to make it visually stand out from the others.
I'm really new to styling controls. I actually just started to read about it yesterday. But it really helps to make an app visually interesting instead of just the plain default styles.
I would really appreciate some help or guidance here :)
Greetings :)
We can modify the PivotHeaderItem default style to implement the effect. Here is also a similar thread that describes how to achieve it : Pivot Header style
Please note that: the PivotHeaderItem default style is based on the Windows Software Development Kit (SDK) for Windows 10, Version 1511 (Windows SDK version 10.0.10586.0). If your app target on other version, the styles and resources may be have different values. But the approach to implement the effect is similar. You can find the corresponding source in the path of your Windows SDK installation such as:
C:\Program Files (x86)\Windows Kits\10\DesignTime\CommonConfiguration\Neutral\UAP\10.0.16299.0\Generic.

UI Text not rendering properly with Intellij IDEA and MacType

I wanted to make Intellij IDEA on windows look like the one on OS X Because in
my opinion it looks much better, so I installed MacType, I was able to get the
editor font render correctly, but when I change the UI font to match OS X's UI
font, The text gets cut off in some places. The font I am trying to use is
Lucida Grande size 15. You can see it for yourself in the picture
below:
Intellij UI Text getting cut: https://i.stack.imgur.com/4jnda.png
But if I remove disable MacType rendering, everything works fine, but it looks bad.
Intellij UI Text without MacType rendering: https://i.stack.imgur.com/AJEUl.png
I've tried changing MacType's settings, but nothing works!
I am on Windows 10 Creators Update with Intellij IDEA 2017.2
Any help would be appreciated.
I found the answer myself! Apparently if you open the mactype profile you are using with notepad, and paste the following text at the end of the file:
[Experimental#idea64.exe]
ClipBoxFix=1
Then all the fonts will render correctly. Note, this does not only work for Intellij IDEA, but also all other java applications and a few others. To achieve this, all you have to do is replace "idea64.exe" with the name of the app executable. An example is for the 32-bit version of Intellij, you would replace "idea64.exe" with "idea.exe".
More information can be found here: https://github.com/snowie2000/mactype/wiki/ClipBoxFix