Fix problem with filenames missing normalization

This commit is contained in:
Francesco Abbate
2021-05-24 15:58:49 +02:00
parent 3634c212a9
commit f17f5a4d6d
2 changed files with 11 additions and 4 deletions
+8 -3
View File
@@ -89,17 +89,22 @@ command.add(nil, {
local view = core.active_view
if view.doc and view.doc.abs_filename then
local dirname, filename = view.doc.abs_filename:match("(.*)[/\\](.+)$")
core.command_view:set_text(core.normalize_to_project_dir(dirname) .. PATHSEP)
if dirname then
dirname = core.normalize_to_project_dir(dirname)
local text = dirname == core.project_dir and "" or common.home_encode(dirname) .. PATHSEP
core.command_view:set_text(text)
end
end
core.command_view:enter("Open File", function(text)
core.root_view:open_doc(core.open_doc(common.home_expand(text)))
local filename = system.absolute_path(common.home_expand(text))
core.root_view:open_doc(core.open_doc(filename))
end, function (text)
return common.home_encode_list(common.path_suggest(common.home_expand(text)))
end, nil, function(text)
local path_stat, err = system.get_file_info(common.home_expand(text))
if err then
core.error("Cannot open file %q: %q", text, err)
elseif path_stat.type == 'dir' then
elseif path_stat.type == 'dir' then
core.error("Cannot open %q, is a folder", text)
else
return true