1
Fork 0
satellite/dotfiles/neovim/lua/my/helpers/vscode.lua
2022-08-05 20:11:10 +03:00

16 lines
161 B
Lua

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