Skip to content

Commit

Permalink
Update plugin/core/types.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl authored Feb 28, 2024
1 parent ab9be7d commit 4ef4de9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugin/core/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -840,10 +840,10 @@ def match_view(self, view: sublime.View, scheme: str) -> bool:
syntax = view.syntax()
if not syntax:
return False
# We don't want to match on empty selectors.
if len(self.selector.strip()) == 0:
selector = self.selector.strip()
if not selector:
return False
return scheme in self.schemes and sublime.score_selector(syntax.scope, self.selector)
return scheme in self.schemes and sublime.score_selector(syntax.scope, selector) > 0

def map_client_path_to_server_uri(self, path: str) -> str:
if self.path_maps:
Expand Down

0 comments on commit 4ef4de9

Please sign in to comment.