mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-22 07:24:52 +01:00
fix: codemp now uses a global
not sure how to pass the option back from setup() to window without a global, but i'd love to...
This commit is contained in:
parent
59c850a8a9
commit
216cd2d6b1
2 changed files with 58 additions and 58 deletions
|
@ -1,64 +1,64 @@
|
||||||
local rt = nil
|
if CODEMP == nil then
|
||||||
local session = nil
|
---@class CodempGlobal
|
||||||
local native = nil
|
CODEMP = {
|
||||||
local timer = nil
|
rt = nil,
|
||||||
|
session = nil,
|
||||||
|
native = nil,
|
||||||
|
config = {
|
||||||
|
neo_tree = false,
|
||||||
|
callback_interval = 100,
|
||||||
|
},
|
||||||
|
setup = function (opts)
|
||||||
|
CODEMP.config = vim.tbl_extend('force', CODEMP.config, opts)
|
||||||
|
|
||||||
local function setup(_opts)
|
local path = vim.fn.stdpath('data') .. '/codemp/'
|
||||||
local path = vim.fn.stdpath('data') .. '/codemp/'
|
if vim.fn.isdirectory(path) == 0 then
|
||||||
if vim.fn.isdirectory(path) == 0 then
|
vim.fn.mkdir(path, 'p')
|
||||||
vim.fn.mkdir(path, 'p')
|
|
||||||
end
|
|
||||||
|
|
||||||
if native == nil then
|
|
||||||
native = require('codemp.loader').load() -- make sure we can load the native library correctly, otherwise no point going forward
|
|
||||||
--native.logger(function (msg)
|
|
||||||
-- vim.schedule(function () print(msg) end)
|
|
||||||
--end, true)
|
|
||||||
end
|
|
||||||
|
|
||||||
if session == nil then
|
|
||||||
session = require('codemp.session')
|
|
||||||
end
|
|
||||||
|
|
||||||
if rt == nil then
|
|
||||||
rt = native.spawn_runtime_driver() -- spawn thread to drive tokio runtime
|
|
||||||
vim.api.nvim_create_autocmd(
|
|
||||||
{"ExitPre"},
|
|
||||||
{
|
|
||||||
callback = function (_ev)
|
|
||||||
if session.client ~= nil then
|
|
||||||
print(" xx disconnecting codemp client")
|
|
||||||
session.client = nil
|
|
||||||
end
|
|
||||||
rt:stop()
|
|
||||||
end
|
|
||||||
}
|
|
||||||
)
|
|
||||||
end
|
|
||||||
|
|
||||||
local timer_interval = vim.g.codemp_callback_interval or 100
|
|
||||||
|
|
||||||
if timer == nil then
|
|
||||||
timer = vim.loop.new_timer()
|
|
||||||
timer:start(timer_interval, timer_interval, function()
|
|
||||||
while true do
|
|
||||||
local cb = native.poll_callback()
|
|
||||||
if cb == nil then break end
|
|
||||||
cb()
|
|
||||||
end
|
end
|
||||||
end)
|
|
||||||
end
|
|
||||||
|
|
||||||
require('codemp.command')
|
if CODEMP.native == nil then
|
||||||
|
CODEMP.native = require('codemp.loader').load() -- make sure we can load the native library correctly, otherwise no point going forward
|
||||||
|
--native.logger(function (msg)
|
||||||
|
-- vim.schedule(function () print(msg) end)
|
||||||
|
--end, true)
|
||||||
|
end
|
||||||
|
|
||||||
return {
|
if CODEMP.session == nil then
|
||||||
native = native,
|
CODEMP.session = require('codemp.session')
|
||||||
session = session,
|
end
|
||||||
rt = rt,
|
|
||||||
callbacks_timer = timer,
|
if CODEMP.rt == nil then
|
||||||
|
CODEMP.rt = native.spawn_runtime_driver() -- spawn thread to drive tokio runtime
|
||||||
|
vim.api.nvim_create_autocmd(
|
||||||
|
{"ExitPre"},
|
||||||
|
{
|
||||||
|
callback = function (_ev)
|
||||||
|
if CODEMP.session.client ~= nil then
|
||||||
|
print(" xx disconnecting codemp client")
|
||||||
|
CODEMP.session.client = nil
|
||||||
|
end
|
||||||
|
CODEMP.rt:stop()
|
||||||
|
end
|
||||||
|
}
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
if timer == nil then
|
||||||
|
timer = vim.loop.new_timer()
|
||||||
|
timer:start(CODEMP.config.timer_interval, CODEMP.config.timer_interval, function()
|
||||||
|
while true do
|
||||||
|
local cb = CODEMP.native.poll_callback()
|
||||||
|
if cb == nil then break end
|
||||||
|
cb()
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
|
require('codemp.command')
|
||||||
|
|
||||||
|
return CODEMP
|
||||||
|
end,
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
return {
|
return CODEMP
|
||||||
setup = setup
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
if vim.g.codemp_neo_tree then
|
if CODEMP.config.neo_tree then
|
||||||
return {
|
return {
|
||||||
update = function () require("neo-tree.sources.manager").refresh("codemp") end,
|
update = function () require("neo-tree.sources.manager").refresh("codemp") end,
|
||||||
init = function () end,
|
init = function () end,
|
||||||
|
|
Loading…
Reference in a new issue