rlivings39 / vscode-fzf-quick-open

vscode extension providing quick file/folder open and searching using fzf
MIT License
76 stars 17 forks source link

Use terminal.integrated.automationProfile.windows instead of terminal.integrated.defaultProfile.windows #52

Open Spitfire1900 opened 4 months ago

Spitfire1900 commented 4 months ago

I use Xonsh on Windows and unless I set "terminal.integrated.defaultProfile.windows": "Command Prompt" (or Powershell) the program behaves as if it is on Linux, however this causes a The specified path is invalid.

fzf | c:\\Users\\XXXXXX\\.vscode\\extensions\\rlivings39.fzf-quick-open-0.5.1\\scripts\\topipe.bat open \\\\?\\pipe\\fzf-pipe-51676
The specified path is invalid.
rlivings39 commented 3 months ago

Thanks for reporting @Spitfire1900 . Please let me know if I'm understanding correctly. As I understand this, you're reporting 2 issues.

First, you have terminal.integrated.automationProfile.windows set but not terminal.integrated.defaultProfile.windows. The extension reads the latter and ignores the former, causing issues. Second, once you set defaultProfile you get the error shown.

Is that accurate or am misunderstanding?

Spitfire1900 commented 3 months ago

That is correct.

rlivings39 commented 3 months ago

Great. Thanks for confirming @Spitfire1900 .