remove list_includes_item util function

This commit is contained in:
2022-03-27 17:30:31 +03:00
parent b9a2f87484
commit 0054d34b67
2 changed files with 1 additions and 12 deletions

View File

@@ -1,15 +1,5 @@
local M = {}
M.list_includes_item = function(list, item)
for _, value in pairs(list) do
if value == item then
return true
end
end
return false
end
M.yank = function(message)
if vim.fn.has("win32") == 1 then
os.execute("echo '" .. message .. "' | win32yank -i")