Skip to content

Commit

Permalink
use workspace.ignoreFolders in references
Browse files Browse the repository at this point in the history
fixes #315
  • Loading branch information
FelipeLema committed Apr 24, 2024
1 parent 9df0ab5 commit 069c0c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jedi_language_server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,10 +420,11 @@ def references(
jedi_script = jedi_utils.script(server.project, document)
jedi_lines = jedi_utils.line_column(params.position)
names = jedi_script.get_references(*jedi_lines)
ignore_folders = server.initialization_options.workspace.symbols.ignore_folders
locations = [
location
for location in (jedi_utils.lsp_location(name) for name in names)
if location is not None
if location is not None and not _ignore_folder(location, ignore_folders)
]
return locations if locations else None

Expand Down

0 comments on commit 069c0c6

Please sign in to comment.