Ivan Elfimov
Ivan Elfimov
Hi! After some digging through the code I found quite simple solution to this. All I had to do was to add `**kwargs` into `jsonrpc` and `jsonrpc_map` methods in backend/flask,...
I understand that you want to reuse native nvim_open_win options. I can also see a scenario, when a person doesn't want to dive deep into how nvim internals work and...
Maybe you are right. I changed to `row` and `col` options, as you requested.
It re-uses the variable from `copilot.vim`. https://github.com/zbirenbaum/copilot.lua/blob/f7612f5af4a7d7615babf43ab1e67a2d790c13a6/lua/copilot/util.lua#L227 Here is an example config: ```lua { "zbirenbaum/copilot.lua", cmd = "Copilot", event = "InsertEnter", config = function() vim.g.copilot_proxy = "http://127.0.0.1:3128" require("copilot").setup({}) end, },...