Paulo Coelho
Paulo Coelho
Thoughts on plugins being able to send instructions to zellij? There's already subscribe, but I think going the other way around would be important too. Once mouse events are added,...
It seems like sending actions would scale better than having to add functions for each action. I'm not too familiar with how wasm and rust interoperate, but could update and...
Yeah, the correct length should be 2 (start space, end space, always constant) + 2 * separator_width. You can tell the length isn't correct in simplified ui since the algorithm...
And yeah the first separator doesn't seem to trigger a tab switch, but that happens regardless of length since it's the 0th char. Probably a off by one error in...
Yep, I can confirm that this fixes the problem on my work computer.
@archseer I pushed some changes, I dunno if you got a notification for it. Let me know for next time if you did though, not trying to spam.
Alternatively, this also works and is probably better? ```lua luasnip.config.set_config({ ['region_check_events'] = 'InsertEnter', }) ```
Did you install the c lsp? What does `:LspInfo` show? You can install lsp servers easily with `:Mason`
In the init.lua you can uncomment [this line](https://github.com/nvim-lua/kickstart.nvim/blob/master/init.lua#L340) to install and enable clangd, I think that's the lsp you're looking for. Alternatively, you can run `:Mason` and it will list...
Does unmaskFunctionName default name really have to be a hook? From the looks of it, it's not actually a hook, but if the function name starts with `use` then tooling...