fix(moveToFolderInCwd): typo in notification
parent
07088c3d84
commit
47863d8acb
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue