Melker Ulander

Results 205 comments of Melker Ulander

@lambtho12 Here's a minimal `init.lua`: Click to expand ```lua local root = vim.fn.fnamemodify(vim.fn.expand('$HOME') .. '/nvim-test-config', ':p') for _, name in ipairs({ 'config', 'data', 'state', 'cache' }) do vim.env[('XDG_%s_HOME'):format(name:upper())] = root...

@lambtho12 Hmm ok. `show_tags` uses `rg` (if available), right? What's your output of `rg --version`? Here's mine: ``` ripgrep 13.0.0 -SIMD -AVX (compiled) +SIMD +AVX (runtime) ```

@lambtho12 Hmm ok I think I realize what's going on on my side. For some reason I though telekasten supported putting tags in the header's `tags` list like so: ```markdown...

@metiulekm Seems to be working for me. Nice!

I'm having the same issue. Whenever I open a node project without eslint set up I get the error `No ESLint configuration found` which is kinda annoying.

I realize now that the reason I was seeing this message is because I had an `.eslintrc.json` in my home directory. If I remove it I no longer see the...

Is this still supposed to work? I get this error on startup: ``` [rest.nvim] Unrecognized configs found in setup: { "result" } ``` I've tried a bunch of variants like...

Thank you for the response! However, I get the following error message: `Can't set filetype to 'vnd.api+json' (E474: Invalid argument). Formatting is canceled` Here's the request file that I'm using:...

@boltlessengineer Thank you for fixing this! I no longer get the error message. Is it possible to also set the filetype of the response body to JSON in the case...

@boltlessengineer Hmm you're right, I tested against httpbin like so, and it does work: ``` GET https://httpbin.org/response-headers?content-type=application/vnd.api%2bjson ``` However, it does _not_ work for responses from the real server that...