Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't attach LSP to syntax test files #2531

Merged
merged 2 commits into from
Oct 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions plugin/documents.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
from .session_view import SessionView
from functools import partial
from functools import wraps
from os.path import basename
from typing import Any, Callable, Generator, Iterable, TypeVar
from typing import cast
from typing_extensions import Concatenate, ParamSpec
Expand Down Expand Up @@ -95,6 +96,10 @@ def is_regular_view(v: sublime.View) -> bool:
return False
if v.settings().get('is_widget'):
return False
# Not a syntax test file.
if (filename := v.file_name()) and basename(filename).startswith('syntax_test_'):
return False
# Not a transient sheet (preview).
sheet = v.sheet()
if not sheet:
return False
Expand Down