Skip to content

Commit

Permalink
remove trailing space
Browse files Browse the repository at this point in the history
  • Loading branch information
stevalkr committed Nov 11, 2024
1 parent a735e8a commit 97fb744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/oil/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ M.open_preview = function(opts, callback)
end
if entry.meta ~= nil and entry.meta.stat ~= nil then
if entry.meta.stat.size >= config.preview.max_file_size_mb * 1e6 then
return finish("File over " .. config.preview.max_file_size_mb .. "MB is too large to preview ")
return finish("File over " .. config.preview.max_file_size_mb .. "MB is too large to preview")
end
end
local entry_title = entry.name
Expand Down

0 comments on commit 97fb744

Please sign in to comment.