Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable replace preview on click in visual studio code

I have a similar question to this issue https://github.com/Microsoft/vscode/issues/41581

How do you disable the open of a replace preview on click of a find and replace item in a file in visual studio code? There doesn't seem to be a way to alter that in the user settings. I just want to be able to have find and replace text in the side menu, click on the file reported and just be taken to the file.

like image 859
Ben Nelson Avatar asked Aug 24 '18 19:08

Ben Nelson


People also ask

How do I disable code preview in Vscode?

Ctrl + Shift + P write Toggle minimap and hit enter and it's gone. Save this answer.

How do I turn off autocompletion in Vscode?

By default, VS Code shows snippets and completion proposals in one widget. You can control the behavior with the editor.snippetSuggestions setting. To remove snippets from the suggestions widget, set the value to "none" .


1 Answers

A solution to this issue was merged in November 2018.

Go to File → Preferences → Settings and then write "replace" in the search bar and you will see the option:

typing "replace" in the search bar in settings

You can also use "search.useReplacePreview": false in your settings file.

like image 116
Lucas Emerick Avatar answered Sep 20 '22 17:09

Lucas Emerick