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
125 Views Asked by Sgene9 At
1
There are 1 best solutions below
Related Questions in VISUAL-STUDIO-CODE
- vscode file icons
- Building C# code in VSCode on Mac
- How do I support jasmine and es6 syntax in Visual studio Code?
- JS Code didn't work, trying do a demo in css lessons
- Debug Java in Brackets editor or Visual Studio Code
- Visual Studio Code, C# support on Windows
- What is the use of the Developer Tools in VS Code?
- Option to push disabled in Visual Studio Code
- How do I include 'System.Runtime.Serialization.Json' namespace in my VSCode project on Mac OS X?
- Using System.Web.Http on mac os x
- VSCode intelliSense autocomplete for javascript
- Set language for syntax highlighting in Visual Studio Code
- Import {} from location is not found in VS Code using TypeScript and Angular 2
- Predefined type 'System.Object' is not defined or imported [dnxcore50]
- VS code appending special characters on paste
Related Questions in WSL-2
- Why table data is not passed to MySQL server
- Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? (Ubuntu 20.04 ,WSL2)
- Visual Studio Code not running/working on WSL 2
- VS Code connect to WSL Ubuntu 20.04 LTS, fail with error: Could not fetch remote environment
- How to access service running in WSL2 from Windows host using 127.0.0.1?
- Why Docker can't detect WSL 2 distro in Windows 10 Home?
- Expose .NET Core WebAPI from VSCode on Network on WSL2
- WSL2 Golang install tools: Permission denied
- Browser Does Not Update on Save with webpack-dev-server in Docker in WSL 2
- lookup konnek-db on 127.0.0.11:53: no such host POSTGRES DOCKER WSL2 not connected error
- Error when running eShopOnContainers using Docker and WSL2 on Windows 10 Home: "src_sqldata_1 exited with code 255"
- WslRegisterDistribution failed with error: 0xffffffff
- Where are the files inside wsl2 physically stored?
- Unable to connect adb in wsl2 to windows adb server
- Setting a consistent display number for X2Go client
Related Questions in VISUAL-STUDIO-CODE-SERVER
- How to use export with Python on Linux in Juypter Notebook
- Can't debug on vscode get this message: Unable to start debugging. LLDB exited unexpectedly with exit code 134 (0x86)
- Angular Project SCSS error cannot find angular material import
- Getting VS code server to run on Sagemaker Studio
- unable to use the vs code server following their posted documentation but I am getting an error related to the syntax
- Automation to download Extensions for VS Code on a code server without an internet connection?
- 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)
- When using turtle/tkinter in a remote instance of vscode, the window opens on the remote server's screen
- VSCode - Disable Ruby Language Server error display
- About VS Code-Server early access
- VS code-server starting service issue
- Does the VSCode Remote Tunnels support opening GUIs?
- Difference between licensing terms of code-server vs. VS Code Server
- ReferenceError: document is not defined(javascript)
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.