fix(moveToFolderInCwd): typo in notification

remotes/origin/HEAD
Chris Grieser 2024-02-10 20:20:05 +01:00
parent 07088c3d84
commit 47863d8acb
1 changed files with 3 additions and 3 deletions

View File

@ -160,9 +160,9 @@ function M.moveToFolderInCwd()
if success then
cmd.edit(newFilePath)
u.bwipeout("#")
local msg = ("Moved %q to %q."):format(filename, destination)
if supportsImportUpdates then msg = msg .. " and updated imports." end
u.notify(msg)
local msg = ("Moved %q to %q"):format(filename, destination)
local append = supportsImportUpdates and " and updated imports." or "."
u.notify(msg + append)
end
end)
end