fix(moveToFolderInCwd): typo in notification
parent
07088c3d84
commit
47863d8acb
|
|
@ -160,9 +160,9 @@ function M.moveToFolderInCwd()
|
||||||
if success then
|
if success then
|
||||||
cmd.edit(newFilePath)
|
cmd.edit(newFilePath)
|
||||||
u.bwipeout("#")
|
u.bwipeout("#")
|
||||||
local msg = ("Moved %q to %q."):format(filename, destination)
|
local msg = ("Moved %q to %q"):format(filename, destination)
|
||||||
if supportsImportUpdates then msg = msg .. " and updated imports." end
|
local append = supportsImportUpdates and " and updated imports." or "."
|
||||||
u.notify(msg)
|
u.notify(msg + append)
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue