Skip to content

Commit 6117582

Browse files
fix: typo on clipboard notify (#2032)
1 parent 362ecbe commit 6117582

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/nvim-tree/actions/fs/copy-paste.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ local function add_to_clipboard(node, clip)
122122
for idx, _node in ipairs(clip) do
123123
if _node.absolute_path == node.absolute_path then
124124
table.remove(clip, idx)
125-
return notify.info(node.absolute_path .. " removed to clipboard.")
125+
return notify.info(node.absolute_path .. " removed from clipboard.")
126126
end
127127
end
128128
table.insert(clip, node)

0 commit comments

Comments
 (0)