tomrijndorp / vscode-finditfaster

Find it, but faster! Fast file search for VS Code.
MIT License
299 stars 29 forks source link

Search window closes if settings.json is changed. #47

Closed hakan-demirli closed 1 year ago

hakan-demirli commented 1 year ago

How to reproduce: 1- Open settings.json in an editor (vscode, neovim, notepad ...). 2- Open vscode (code) and start fuzzy search Ctrl+Shift+j. Don't press enter let it wait. 3- Edit settings.json:

    "editor.cursorStyle": "block", ->     "editor.cursorStyle": "line", 

4- Save settings.json

In vscode suddenly fuzzy search terminates and terminal closes.

tomrijndorp commented 1 year ago

Hi, I can confirm. This is intended behavior. Some workspace settings affect the extension's behavior, in some cases requiring the extension to be restarted.

hakan-demirli commented 1 year ago

I see. Thank you for the quick response.