Timothée Sterle
Timothée Sterle
I believe such a tool would be better suited for a more general-purpose list like [awesome-neovim](https://github.com/rockerBOO/awesome-neovim) rather than this guide
I can reproduce by manually sending a request to the server: ```lua vim.lsp.buf_request(0, 'workspace/executeCommand', {command = 'switchDatabase', arguments = {'testdb'}}, function() end) ``` It works with the mysql driver though,...
Hello, When you switch connections, an event is emitted and you can get the name of the chosen connection (and then display it in your statusline). This feature is currently...
Are you using the `db_connection()` function in your statusline? It looks like you're attaching the same function to the event multiple times. Try subscribing to the event only once outside...
@ryanburda That's an oversight on my part. Hopefully #21 fixes it
I've tried reproducing the bug but haven't managed to do so unfortunately. Would you mind posting more details about your setup/how to reproduce the bug? Did the bug appear after...
It should be supported, I ran the command in visual mode with version 0.6.1 and it worked without any issue. Does this happen for all inputs or is this specific...
Very odd bug... I can reproduce it in VSCode and in Neovim without loading `sqls.nvim` so it's likely a problem with the server
Yes, unfortunately there's not much I can do since I don't maintain the server
>it seems [the query is extracted and executed by it without the plugin ever getting it](https://github.com/nanotee/sqls.nvim/blob/main/lua/sqls/commands.lua#L25), am I right? Yup, I only send the range coordinates to the language server...