Steven Arcangeli
Steven Arcangeli
You could try bumping up the value of `lsp_file_methods.timeout_ms`. If you create a toy environment (the ideal would be a public git repo) that reproduces the issue I can look...
I don't think oil needs to do anything in particular here. When we preview the file, we're just opening the buffer in another window. If you have a plugin that...
Oil uses `:help previewwindow` for the preview window, so you can do this yourself pretty easily. Here's how oil gets the preview window internally https://github.com/stevearc/oil.nvim/blob/9e5eb2fcd1dfee2ff30c89273ffff179e42034b9/lua/oil/util.lua#L661-L668 You can use this directly...
Try just opening a directory first ``` nvim oil-ssh://[email protected]/ ``` If the ssh operation takes too long, oil opens up a floating window with the terminal that contains the commands...
My guess is you have something else overriding your `` binding. I tried it with this minimal repro file and it works fine ```lua -- save as repro.lua -- run...
Please provide a minimal repro file like the one I constructed above that demonstrates the issue
As far as I'm aware, there's no API for getting or setting jumps, so I don't think there's any way for resession to save and restore that state.
I think a PR to add an `exists()` method would be reasonable
I don't know where you got this syntax from, but it is not correct ```lua formatters_by_ft = { svelte = { "deno_fmt", args = { "--ext", "svelte", "--stdin-filepath", "$FILENAME", "--unstable-component"...
I cannot replicate this. I'm using this task ```lua overseer.register_template({ name = "quickfix", builder = function() return { cmd = "./quick.sh", components = { "default", { "on_output_quickfix", open_on_match = true,...