We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edc5112 commit b1eba45Copy full SHA for b1eba45
src/solidlsp/ls.py
@@ -1168,7 +1168,7 @@ def request_parsed_files(self) -> list[str]:
1168
)
1169
raise LanguageServerException("Language Server not started")
1170
rel_file_paths = []
1171
- for root, dirs, files in os.walk(self.repository_root_path):
+ for root, dirs, files in os.walk(self.repository_root_path, followlinks=True):
1172
dirs[:] = [d for d in dirs if not self.is_ignored_path(os.path.join(root, d))]
1173
for file in files:
1174
rel_file_path = os.path.relpath(os.path.join(root, file), start=self.repository_root_path)
0 commit comments