tomrijndorp / vscode-finditfaster

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

Bug in NixOs #79

Open Ethanol48 opened 5 months ago

Ethanol48 commented 5 months ago

This is an issue found at least in NixOS, the problem are the shebangs in the scripts that the extension uses,

right now the scripts use this shebang: #!/bin/bash but this returns an error as suspected in Issue #44

I revolved my issue for my system when I changed the shebangs to use sh instead of bash, other option is to change the shebang to !/usr/bin/env bash like said in the issue above.

so for anyone in NixOs with this issue, this is a workaround.

To resolve the issues you would need to modify the shebang situated in: ~/.vscode/extensions/tomrijndorp.find-it-faster-0.0.31/ this would depend in the extension version.

Ethanol48 commented 5 months ago

I think this should be written in known issues for any nixos user