refactor(actions): remove linefeed on info messages. (#1450)

This commit is contained in:
John Fred Fadrigalan
2022-07-22 16:10:58 +08:00
committed by GitHub
parent 08ab346f03
commit d927e89aa9
3 changed files with 6 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ function M.rename(node, to)
if not success then
return utils.notify.warn(err_fmt(node.absolute_path, to, err))
end
utils.notify.info(node.absolute_path .. "" .. to .. "\n")
utils.notify.info(node.absolute_path .. "" .. to)
utils.rename_loaded_buffers(node.absolute_path, to)
events._dispatch_node_renamed(node.absolute_path, to)
end