Skip to content

Commit

Permalink
Merge pull request #97 from jhasse/search-all-panes
Browse files Browse the repository at this point in the history
Search all panes when opening a matched file
  • Loading branch information
noseglid committed Jun 14, 2015
2 parents 49c1124 + f650f70 commit ecea90a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/error-matcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ module.exports = (function () {
}
atom.workspace.open(file, {
initialLine: row,
initialColumn: col
initialColumn: col,
searchAllPanes: true
});
this.currentMatch.push(this.currentMatch.shift());
}.bind(this));
Expand Down

0 comments on commit ecea90a

Please sign in to comment.