File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ A [Sublime Text](http://www.sublimetext.com) plugin that allows you to…
24
24
- [Trim On Save](#trim-on-save)
25
25
- [Save After Trim](#save-after-trim)
26
26
- [Live Matching vs On-demand Matching](#live-matching-vs-on-demand-matching)
27
- - [Ignore Syntax ](#ignore-syntax )
27
+ - [Ignore Scope ](#ignore-scope )
28
28
- [For power-users only!](#for-power-users-only)
29
29
- [Disabled for large files](#disabled-for-large-files)
30
30
- [The matching pattern](#the-matching-pattern)
Original file line number Diff line number Diff line change @@ -491,7 +491,10 @@ def is_view_visible(self, view):
491
491
# see if this view is visible in its group
492
492
group = window .get_view_index (view )[0 ]
493
493
if group != - 1 :
494
- return view .id () == window .active_view_in_group (group ).id ()
494
+ active_view_in_group = window .active_view_in_group (group )
495
+ # won't be present if a html sheet is active
496
+ if active_view_in_group :
497
+ return view .id () == active_view_in_group .id ()
495
498
496
499
# check if this view is the active panel
497
500
active_panel = window .active_panel () or ""
You can’t perform that action at this time.
0 commit comments