diff --git a/lua/genghis/init.lua b/lua/genghis/init.lua index 45f5872..3cf91f2 100644 --- a/lua/genghis/init.lua +++ b/lua/genghis/init.lua @@ -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