From d964123cd968a1bda854bbc6931677994d03bd33 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+orbitalquark@users.noreply.github.com> Date: Thu, 24 Feb 2022 00:07:40 -0500 Subject: Fixed potential crash caused by r3219. Ensure the view exists. --- core/ui.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ui.lua b/core/ui.lua index 8a57a160..263f6a54 100644 --- a/core/ui.lua +++ b/core/ui.lua @@ -272,7 +272,7 @@ function ui.goto_file(filename, split, preferred_view, sloppy) if #_VIEWS == 1 and split and not (view.buffer.filename or ''):find(patt) then view:split() else - local other_view = preferred_view + local other_view = _VIEWS[preferred_view] and preferred_view for _, view in ipairs(_VIEWS) do local view_filename = view.buffer.filename or '' if view_filename:find(patt) then -- cgit v1.2.3