How do I increase the size of the status bar on visual studio code? - visual-studio-code

The status bar shown on the bottom of VSCode is too small as it's hard for me to read vim commands that I'll be typing on there. I don't want to increase the font size of the editor nor the zoom since they're big enough for me.
Basically, I want to increase the size (font, icon, bar size, etc.) of the bottom status bar without changing the size of any other component of VSCode.
Is there a way to do that or an extension I can use to change it?

AFAIK there is no setting to adjust the height of the status bar. A common practice is to set the zoom level and decrease the editor and terminal font size, but this will also increase the activity bar icons and other areas.
In your settings.json add
{
...
"window.zoomLevel": 0.5,
"editor.fontSize": 14,
...
}
Adjust zoomLevel to your liking, by default is 0 you should increment the value by the decimal, e.g. 0.1, 0.15 ...
Or in your Settings Cmd + , search for window zoom level and change the value there

Related

Meshlab increase point size

How can I increase the point size in Meshlab for point clouds? I found how I can show / hide specific PCs, but I do not see where to change their display properties : size, color, symbol ...
If you are using Meshlab 1.3, you have to do 3 steps:
View->Show Layers Dialog to enable the panel at the right.
Render->Show Vertex Dots, to show the vertices as small circles.
There is a Dot size field in the Layer Dialog that let you change the size of the circles.
If you are using Meshlab-2016 or later, it is even easier...
Click on the tab of vertex and choose the option Dot Decorator (1)
Change the size of dots with the Point Size Bar (2)
In MeshLab, you can just use Alt + mouse wheel to control point size.
Or you can find the point size setting in:
Tools->Options->MeshLab::Appearance::pointSize.

VS Code - Is there a way you can make the Minimap bigger?

I have enabled the MiniMap in Visual Studio Code (VSCODE) with the following code:
"editor.minimap.enabled": true
But can I make it bigger? It's so small at the right.
thanks Alex there is a new setting from VSCode release 1.40.0 onwards:
"editor.minimap.scale": 2
before VSCode 1.40.0:
there is no zoom-level for the minimap.
But i think the following settings is useful as it renders it schematically which looks much nicer than with true! Maybe this improves it! ;-)
"editor.minimap.renderCharacters": false
In the settings, you can set the width with
// Limit the width of the minimap to render at most a certain number of columns
"editor.minimap.maxColumn": 120
From vscode release 1.40.0
"editor.minimap.scale": 2,
There are two new minimap settings which are in v1.43:
Editor › Minimap: Size
values: proportional, fit and fill
From https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_43.md#minimap-size:
When set to proportional (the default), each line gets a certain
amount of vertical space in the minimap, depending on
editor.minimap.scale. For example, on a high-DPI monitor, with a
configured scale of 1 (the default), each line gets 4 px in the
minimap. So for a file of 100 lines, the height of the lines rendered
in the minimap is 400 px, and for a file of 1000 lines, it is 4000 px.
That means that for large files, the minimap will also scroll, as the
current file is scrolled.
When set to fit, the height of the minimap
is limited to never be larger than the editor height. So if a file has
many lines, they will be sampled and only a subset will be rendered in
the minimap, such that there is no need for the minimap to scroll.
When set to fill, the height of the minimap is always the editor
height. For large files, this is also achieved by sampling lines, but
for small files, this is achieved by reserving more vertical space for
each line (stretching the lines).
Here the size is changed from proportional to fit, and then in a smaller file, from fit to fill:
Not yet, but the pull request is on its way https://github.com/microsoft/vscode/pull/82265

iWatch: WKInterfaceLabel is it possible to stop text from being cut off with "..." at the end of a label?

The text in my WKInterfaceLabel is way too long and causes the text to be cut off with dots at the end. I know for UILabel for iOS you can easily resolve this issue by enabling clip mode. I don't believe there is any way for me to resolve this for watchkit. This is going to force me to use an Image if I can't prevent the text from being cut off. Any tips or suggestions is appreciated.
You have a couple options depending on how you want the view to respond. In your interface story board select your label and open the attributes inspector.
Your first option is to change the font to a smaller size. This is more for a static label that you want to style and leave set.
Your second option is to adjust the min scale value, changing this will automatically shrink the text to fit the window up to the value provided. For example if your font size is 12pt and you set the scale to .5, the font will shrink up to 6pt before appending the ellipsis (...).
Your third option is to set the number of lines to 0 (or a higher number). This will move the text down onto the next line.
Set the number of lines to 0 and ensure the label and any containing groups are set to fit content.
if you want your font size adjust according to label size follow this method
in WKInterfaceTable attribute inspector set min scale to 0
like in screen shoot
Result before Min scale = 0
Result after Min scale = 0
Note: your no of lines also set to 1

How to increase width of bar chart in SSRS

How to increase width of bar chart in SSRS we also want gapping between lines.
Select the Chart Series. In the Properties pane, navigate to CustomAttributes / PointWidth. Adjust to suit e.g. 0.9 will produce a bar a bit wider than the default.
highlight the bar you want change width.
go to menu View -> click properties window or press F4 button
in the properties window, under CustomAttributes find PointWidth and change it. if this value greater than 1, the bar will overlap. if it less than 1, it will change the width of the bar.
If it helps, and I know this is way past the posting date, you can add an extra series, then set the series properties fill option to white. This will give the appearance of a space in between the the other columns

Increasing text size in MuPAD?

MuPAD's text output is ridiculously small for me to read, and although every time I adjust the size, it does not seem to save my preferences. Is there any way to set MuPAD's text size so that it stays as I would like it to? Thanks! btw I am on a mac.
You can adjust the font size in the preferences menu:
matlab→Preferences→Notebook→Default Formats...
You can also change the text size as shown here and switch the pagination as shown here