Skip to content

Commit 8fb746a

Browse files
committed
Fix Next/Prev overriding find-in-files next/prev result.
Fixes #209.
1 parent 256167a commit 8fb746a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cargo_build.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,7 @@ def on_load(self, view):
233233
class NextPrevBase(sublime_plugin.WindowCommand):
234234

235235
def _has_inline(self):
236-
return util.get_setting('show_errors_inline', True) or \
237-
self.window.id() in messages.WINDOW_MESSAGES
236+
return self.window.id() in messages.WINDOW_MESSAGES
238237

239238

240239
class RustNextMessageCommand(NextPrevBase):

0 commit comments

Comments
 (0)