Leon Bogaert
Leon Bogaert
Subtitle support would be nice! @w8mr is there any work needed on your branch to be ready for a pull request?
This would be awesome! I'm looking for something a little more lightweight than Unity but the #1 Unity feature for me is the global menu. Having this as an optional...
There's something else needed to trigger this bug (?). I'm trying tonight to find out what exactly.
I just realised this: some countries have [multiple official names](http://www.omniglot.com/countries/europe.htm) :( For example: België / Belgique Do you have any ideas on how to handle that?
Are you planning on adding some kind of time tracking?
@ad-si aweseome! I'm looking for some kind of timesheet reporting for my boss. To show how much time was spent on certain tasks.
I'm having this issue also. I've created a custom "ssh+mysql" dialect that I want to integrate. I think of just forking pop and adding a `dialect_ssh_mysql.go` file.
Ah, I see the rpc parsing is done in jq itself :) Why is that if I may ask? The only options I see at the moment: 1. is do...
I'm pretty sure the lspconfig settings is a generic lsp thing. I entered some random stuff in the lua lsp settings and checked the requests in the vim lsp log...
neovim lspconfig only uses the `didChangeConfiguration` call: ``` ["DEBUG",{"request":{"jsonrpc":"2.0","method":"workspace/didChangeConfiguration","params":{"settings":{"search_path":["."]}}}}] ["DEBUG",{"request":{"jsonrpc":"2.0","method":"workspace/didChangeConfiguration","params":{"settings":{"search_path":["."]}}}}] ``` neovim config: ``` require('lspconfig').jqls.setup({ capabilities = capabilities, cmd = { '/Users/leon/Workspaces/go/src/github.com/LeonB/jq-lsp/jq-lsp' }, -- autostart = false, root_dir = require('lspconfig').util.find_git_ancestor(),...