The symptom was that ctrl+p and "Find in files" only returned results from opened editors.
ctrl+p not working on visual studio code's WSL extension
126 Views Asked by Sgene9 At
1
There are 1 best solutions below
Related Questions in VISUAL-STUDIO-CODE
- Is there a way to prevent vscode from forwarding ssh agent to remote dev container?
- flutter Null check error: did not show file and line number
- vscode, debug angular, first time, doesn't debug, 2nd time stops at main.js then it's ok
- trouble with creating a project for Pymakr in vscode
- Compiling c++ code by VS Code is always blocked by clang-tidy error 'Error running 'clang-tidy'
- Disable typescript in VS Code
- couldn't sign in visual studio code
- I can't add text to "Message" in VS Code when committing to Git
- Cannot type single backtick in VSCode
- WebScraping doesnt work, even without error
- Visual Studio Code keeps discovering python interpreters forever and vscode-server on remote is busy 100%
- vscode uses different cocoapods version when running a task
- Live server extension in VS Code works in background but do not pop the web browser
- How to recover deleted files from create vite react project
- Autocomplete not working for apache spark in java vscode
Related Questions in WSL-2
- Ubuntu-22.04 File watcher failed repeatedly and has been disabled (External file changes sync might be slow)
- I'm unable to access 'https://github.com/Danniecodjoe/alx-system_engineering-devops.git/':
- Installing Docker on Windows 10
- Error "libicui18n.so.73: cannot open shared object file" after installing Node.js via Homebrew on Windows Subsystem for Linux (WSL)
- Buildx error when deploying models in Nuclio(CVAT)
- Appending File Path (With Spaces) to $PATH Variable Removes the Spaces
- How do I set up Xdebug in PhpStorm with Laravel Sail Docker on WSL2 without Docker Desktop
- trivial socket program failing at accept() with errno 22
- Docker and WSL consumes lot of space in C Drive and Ubuntu not working error
- mysql and databases with wsl and visual studio
- I can´t clone my github repository with a ssh key
- How can I access running docker container instead of Apache2 Ubuntu default page?
- POST requests to api.cognitive.microsofttranslator.com from docker in WSL2 with mirrored networking not working when wireguard VPN enabled
- sail fails to build docker image
- How to debug a Magento 2 project on Visual Studio or PhpStorm in Windows 10 with WSL2 Environment using Nginx and PHP 8.1?
Related Questions in VISUAL-STUDIO-CODE-SERVER
- How do I taskset vscode-server?
- ReferenceError: document is not defined(javascript)
- How to use export with Python on Linux in Juypter Notebook
- Possible to develop VSCode extensions on vscode.dev?
- npm install giving npm ERR! Cannot convert undefined or null to object
- Why Reloading VSCode for changing profiles in remote but not in local?
- ctrl+p not working on visual studio code's WSL extension
- Access same server via both Remote-SSH and Remote-Tunnels in vscode?
- Cannot copy/paste from terminal window of VS Code running in Browser (connects to code server on another machine)
- Automation to download Extensions for VS Code on a code server without an internet connection?
- unable to use the vs code server following their posted documentation but I am getting an error related to the syntax
- Difference between licensing terms of code-server vs. VS Code Server
- Does the VSCode Remote Tunnels support opening GUIs?
- VS code-server starting service issue
- Fallback for self hosted vscode extention marketplace?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I googled and found the issue that describes my problem. https://github.com/microsoft/vscode-remote-release/issues/709
I called
~/.vscode-server/bin/6c3e3dba23e8fadc360aed75ce363ba185c49794/node_modules/@vscode/ripgrep/bin/rgfrom shell and got aSegmentation Faultwhich was an indicator to me that the vscode-server installation is messed up.I renamed the
~/.vscode-serverto~/.vscode-server-backupto trigger a reinstall and the ctrl+p started working.Because the new
~/.vscode-serverlacked some stuff, I copied therginto~/.vscode-server-backupand moved it back to~/.vscode-serverI tried to describe my solution in the Github issue, but it's locked. So I decided to post the solution here for others.