Questions tagged [vscode-remote]

Visual Studio Code Remote Development allows you to use a container, remote machine, or the Windows Subsystem for Linux (WSL) as a full-featured development environment

Visual Studio Code Remote Development allows you to use a container, remote machine, or the Windows Subsystem for Linux (WSL) as a full-featured development environment

868 questions
0
votes
1 answer

Saving '*.php/*.vue': Running 'PHP Intelephense/Vetur' Formatter

I am having a bit problem on my VSCode. Everytime I save something, it just keeps loading. Screenshot I am not sure why. Everything was fine last week ago. And I can't even type anything on my terminal. I have this extensions installed. List 1 List…
HnnE
  • 3
  • 4
0
votes
1 answer

VS Code + PHP Intelephense + Remote-SSH + Symfony 3 : undefined method error

I'm discovering VS Code, I am a complete newbie with this code editor, before I used Atom but I want to use VS Code which looks very cool! I have a Symfony 3 project on a Linux server and I want to directly modify its files because it's a dev…
Eve
  • 776
  • 2
  • 11
  • 32
0
votes
1 answer

vscode source control connected to remote host, is showing clock icon

Suddenly today, when I connected to the same remote host through ssh, vscode starts showing clock sign. Despite local changes, git source control is not showing any changes Initially index.lock file existed, and I deleted that, but did not help I…
cryptickey
  • 169
  • 8
0
votes
1 answer

No debugger in VS code extension tests

I need to debug unit tests for an extension for VS Code but am not able to set any breakpoints. They are skipped all together when running tests, yet work when running the extension in debug mode. Steps to reproduce: I cloned…
0
votes
1 answer

C/C++ Code navigation not working in vscode remote development

Tried to access a remote project (from Linux environment) over vscode remote development environment, followed all the necessary steps mentioned in https://code.visualstudio.com/docs/remote/remote-overview, Able to see the files and folder structure…
BasavarajaMS
  • 161
  • 3
  • 13
0
votes
1 answer

Why does Visual code unbound remote debug

I try to debug js with docker by vscode IDE vcode loss debugging - unbound after changed code My visual code (.vscode) launch.json { "version": "0.2.0", "configurations": [ { "type": "node", "request": "attach", "name": "Debug:…
0
votes
0 answers

How do I specify an existing docker-compose.yml file in my devcontainer

I have an existing project with a docker-compose.yml file that runs a zookeeper and kafka image. How do I specify that the docker-compose.yml file needs to be loaded in my devcontainer.json? Would it be possible to not modify the docker-compose file…
Pepper
  • 109
  • 1
  • 7
0
votes
1 answer

VSCode debugger pane missing Variables panel

Somehow the Variables panel in my VSCode debugger is missing as shown in the picture: Is there any way how to turn it on again?
Ha An Tran
  • 337
  • 1
  • 21
0
votes
1 answer

Authentication Error while connecting VSCODE with Google Colab

I tried to connect VS CODE with Google Colab cloud storage using the SSH key. For that, I took the following steps: Ran the code of the highest voted answer of the following link in the Google Colab editor: Is it possible to connect vscode (on a…
0
votes
1 answer

Docker, WSL2 & vs code - bad git/ssh path

I set up my WSL2, Docker and vs code environment this weekend. I am finding an issue when attempting to use git: root@bb7f765df0d6:/var/www/html# git clone git@github.com:hsimah/my-repo.git Cloning into 'my-repo'... fatal: cannot run…
hsimah
  • 1,265
  • 2
  • 20
  • 37
0
votes
1 answer

Code navigation for remote server in VS code

I have installed visual code in my mac to be able to access code to a remote server. I have installed remote-ssh and python packages for vs code and I have managed to connect remotely to my projects in server. However, my issue is while I can use…
konstantin
  • 853
  • 4
  • 16
  • 50
0
votes
1 answer

Developing inside a container on a remote Docker host

From my Windows 10 machine I am trying to develop using containers on a remote Ubuntu 18.04 host. I have been following this guide:…
simon_dmorias
  • 2,343
  • 3
  • 19
  • 33
0
votes
1 answer

How can I access my device from a windows host to a docker linux container?

I have a desktop with Windows 10 and an elgato capture card. I am using OpenCV to capture the frames of the video for processing. So far, everything works perfectly fine: import numpy as np import cv2 cap = cv2.VideoCapture(0) while(True): #…
myermian
  • 31,823
  • 24
  • 123
  • 215
0
votes
0 answers

Interactive Login with Azure SDKs from w/in VSCode DevContainer

When using devcontainers on a project where we are relying on MSIs for app-to-app communication, we are utilizing DefaultAzureCredential as the class to load either from the local developer's machine or, on Azure, the MSI of the running service. In…
0
votes
1 answer

Remote VS Code development with code-server

I have deployed the image https://hub.docker.com/r/codercom/code-server which is remote VS code in Azure containers. But now if I want to open any Project(Eg: Angular Project with node and angular cli setup)in that VS Code and develop remotely how…