Renamed core:command/file-finder => core:find-command/file

This commit is contained in:
rxi
2020-05-30 09:11:42 +01:00
parent 7fbefe40d5
commit db8c5ea2aa
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -35,7 +35,7 @@ command.add(nil, {
end)
end,
["core:command-finder"] = function()
["core:find-command"] = function()
local commands = command.get_all_valid()
core.command_view:enter("Do Command", function(text, item)
if item then
@@ -54,7 +54,7 @@ command.add(nil, {
end)
end,
["core:file-finder"] = function()
["core:find-file"] = function()
core.command_view:enter("Open File From Project", function(text, item)
text = item and item.text or text
core.root_view:open_doc(core.open_doc(text))