Melker Ulander

Results 205 comments of Melker Ulander

Here's the output of `curl -sL -v curl https://httpbin.org/uuid -X GET -H "User-Agent: rest.nvim v3.9.1"` for me: Click to expand ``` ❯ curl -sL -v curl https://httpbin.org/uuid -X GET -H...

That solved the issue for me, thank you! After setting `vim.bo.formatexpr` and `vim.bo.formatprg` `:InspectTree` also shows JSON as the language of the response body.

I just started looking into this as well. I found [this reddit comment](https://www.reddit.com/r/neovim/comments/zq3lum/comment/j0xkmdh/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button) with a solution that uses [nvim-ts-context-commentstring](https://github.com/JoosepAlviste/nvim-ts-context-commentstring) which I removed a while ago since Comment.nvim already supports injected...

@herloncosta That is VimScript my friend

I was just about to create the same issue! Perhaps this could be solved by including **leading** `block_continuation` in `list_item`, instead of using the trailing one (i.e. the one on...

I just wanted to comment here to say that I agree that `provider_selector = { "lsp", "treesitter", "indent" }` seems like a very reasonable configuration API, and a reasonable default...

@mireq So what you're saying is that the `fun(ction)` snippet does not work with LuaSnip? If that's the case, is it possible for luasnip-snippets to filter out those regex snippets...

@mireq Are you sure that it's a cmp_luasnip issue? I can't activate it with [your `minimal_lazy.lua` config](https://github.com/mireq/luasnip-snippets/blob/main/sample_configs/minimal_lazy.lua). If I type `func`, `funct`, `functi`, `functio` or `function` and press `` with...

@mireq But, it doesn't trigger for `function`. When looking at [the source snippet from ultisnips](https://github.com/honza/vim-snippets/blob/aa52ad401bb1057c6c60d5adf37250bac79ce5fc/UltiSnips/lua.snippets#L20) I noticed that there's only a `fun(ction)` and no `fun` snippet, like lusnip-snippet has. Luasnip-snippets...

@mhanberg The output of `:ElixirOutputPanel` contains this: ``` [Warning] error: module MacroA is not loaded and could not be found └─ nofile: Bug (module) ``` Here's the full log: Click...