Skip to content

Commit

Permalink
fix: zsh is not supported both the server and shellcheck (#85)
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Cherng <jfcherng@gmail.com>
  • Loading branch information
jfcherng authored Feb 8, 2025
1 parent 0019036 commit f873817
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugin/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ def should_ignore(cls, view: sublime.View) -> bool:
view.settings().get("repl")
# syntax test files
or os.path.basename(view.file_name() or "").startswith("syntax_test")
# zsh scripts
or view.match_selector(0, "source.shell.zsh")
)

@classmethod
Expand Down

0 comments on commit f873817

Please sign in to comment.