1
Fork 0
satellite/dotfiles/neovim/lua/my/helpers/vscode.lua

16 lines
161 B
Lua
Raw Normal View History

2022-08-05 19:11:10 +02:00
local M = {}
function M.when(f)
if vim.g.vscode ~= nil then
f()
end
end
function M.unless(f)
if vim.g.vscode == nil then
f()
end
end
return M