Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
xucongli1989 committed Apr 26, 2021
1 parent cdd030c commit cac7c58
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions dist/extension.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/extension.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified highlight-icemode-select-1.1.0.vsix
Binary file not shown.
8 changes: 4 additions & 4 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ const activate = (context) => {
if (config.ignoreSelection) {
range = range.filter((o) => {
return !(
o.range._start._line === (activeEditor.selection as any)._start._line &&
o.range._end._line === (activeEditor.selection as any)._end._line &&
o.range._start._character === (activeEditor.selection as any)._start._character &&
o.range._end._character === (activeEditor.selection as any)._end._character
o.range.start.line === activeEditor.selection.start.line &&
o.range.end.line === activeEditor.selection.end.line &&
o.range.start.character === activeEditor.selection.start.character &&
o.range.end.character === activeEditor.selection.end.character
)
})
}
Expand Down

0 comments on commit cac7c58

Please sign in to comment.