From 762c1e2b697a3e71bec1643fc2b21b11bbbb9548 Mon Sep 17 00:00:00 2001 From: rxi Date: Thu, 7 May 2020 21:46:21 +0100 Subject: [PATCH] Fixed RootView's EmptyView keymap text Broke due to command renaming --- data/core/rootview.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/core/rootview.lua b/data/core/rootview.lua index 4bc4cd1..7a24b42 100644 --- a/data/core/rootview.lua +++ b/data/core/rootview.lua @@ -15,8 +15,8 @@ function EmptyView:draw() local x, y, w, h = pos.x, pos.y, self.size.x, self.size.y local _, y = common.draw_text(style.big_font, style.dim, "empty", "center", x, y, w, h) local lines = { - { fmt = "%s to run a command", cmd = "core:do-command" }, - { fmt = "%s to open a file from the project", cmd = "core:open-project-file" }, + { fmt = "%s to run a command", cmd = "core:command-finder" }, + { fmt = "%s to open a file from the project", cmd = "core:file-finder" }, } local th = style.font:get_height() for _, line in ipairs(lines) do