mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:30:03 +08:00
9 lines
112 B
Lua
9 lines
112 B
Lua
--!/usr/bin/lua
|
|
local M = {}
|
|
|
|
function M.exists()
|
|
return vim.fn.exists('*nvim_open_win') == 1
|
|
end
|
|
|
|
return M
|