Questions tagged [vscode-settings]

Visual Studio Code User or Workspace Settings provide a way of override default settings in order to customise the development experience.

Questions about the Visual Studio Code (sometimes abbreviated "VS Code") and how to customise the IDE's settings.

3793 questions
1
vote
1 answer

Get rid of vscode visual scrollbar

How can I get rid of this thing in the Editor? I never use it, yet it occupies valuable space on the screen:
Ruslan Plastun
  • 1,224
  • 2
  • 9
  • 25
1
vote
0 answers

Visual Studio Code Remote - Is file indexing done on the remote server or on my local machine? Can I make the indexing faster?

I'm using Visual studio code currently to navigate source code that I have on a RHEL machine. Searching for code usages is slow (atleast way slower than having code checked out locally- which is expected). The project I have is pretty big (Mysql…
The-Big-K
  • 2,304
  • 14
  • 32
1
vote
0 answers

How to set java.home path in VS Code Remote Container

How to set java.home path in VS Code Remote Container and I want to know how the path should be mentioned. I have the jdk in my local machine. I tried pointing to local absolute path like C:\jdk1.xxx obviously it failed since local files can't be…
1
vote
1 answer

How to format LINQPad scripts properly in Visual Studio Code?

When I open a LINQPad script (with the *.linq extension) in VS Code, it does not have any formatting. How can I enforce the VS Code to format and treat it as C# code?
Ryan
  • 281
  • 1
  • 3
  • 9
1
vote
2 answers

Show current branch on terminal

Is there any way to show in Terminal of VS Code to show in brackets current branch? I saw it somewhere but not sure how it can be done. By some extension or whatever.. C:/myUser/project> git status I would like to see it something…
Henry
  • 189
  • 1
  • 12
1
vote
0 answers

swap control and alt for all keyboard shortcuts in vscode on linux

How do you remap all control keyboard shortcuts to use alt and all alt keyboard shortcuts to use control? In firefox you can swap the ui.key.accelKey and the ui.key.menuAccessKey to swap the buttons. Check this. Is there a way for this to be done in…
1
vote
1 answer

vscode: how to autoindent jupyter notebook ipynb file?

Is it possible to enable auto indent in vscode for ipynb files please?
dgg32
  • 1,311
  • 1
  • 10
  • 30
1
vote
0 answers

visual studio code double click speed not using os setting

Visual studio code is not using double click speed set in the OS (at least in windows). I have it slowed down because i have some problems with my right hand but it doesn't seems to affect it. Basically I can double click in the OS but not in visual…
1
vote
1 answer

Any way to make snippets available inside quote marks in Visual Studio Code?

One thing I find incredibly annoying about VSCode is that none of the defined snippets will be available inside a set of quote marks. This means that if you have a snippet to trigger, say a set of double curly brackets, you can't use a snippet to…
Randombro
  • 13
  • 2
1
vote
1 answer

typescript configuration in a webgl project. Unexpected token : when decalring a type in typescript lint error

I am trying to adapt typescript in a webgl javascript project. For this I tried to build a typescript configured project from scratch, and imitate packages and .eslintrc.js. When you run eslint --init, you are asked for all the options of your…
rustyBucketBay
  • 2,638
  • 1
  • 4
  • 22
1
vote
1 answer

Edit Prettier (VS-Code) CSS formatting settings

I have a an inline CSS line with a variable that looks like this : .popupSubmit {background: #{{ generic_color_10 }};color: #fff; border-color: #fff;} I'm formatting it with Prettier, but the result is broken .popupSubmit { background: #{{…
apollo24
  • 243
  • 1
  • 13
1
vote
1 answer

How to disable info box in visual studio code

Quick question, I seem to be unable to guess the name of this "info box" properly, so google won't find me the right solution to disable this.
1
vote
0 answers

Can I set editor.tokenColorCustomizations inside a VSCode extension?

I'm working on a language support plugin for a proprietary language I use at work. We access properties of deeply nested objects a lot, e.g. This.isa.Really.Long.Variable.Name.ActualValue so the code gets really dense with these. My idea was to…
1
vote
1 answer

Override default syntax coloring in VS Code

I am trying to override default syntax coloring in VS Code. Particularly instead of #a31515 (redish) color in default theme "Light (Visual Studio)" I want to see #036A07 (green) color. For that, in editor.tokenColorCustomizations in my user settings…
vasili111
  • 4,328
  • 6
  • 31
  • 58
1
vote
1 answer

Property env is not allowed in launch.json [VSCode]

All I've done is initialize a template Azure Functions project in VS and when I try to set run configuration environment variables via launch.json, VS directly warns me that it's not "allowed". Furthermore, even when I try to run my .ps1 with env…
1 2 3
99
100