Magnus Bergmark
Magnus Bergmark
This is almost a necessity. We just realized that our cache machines became full from requests that happened a long time ago and has never been opened again. If the...
For now I disable null-ls completely on these files: ```lua null_ls.setup { should_attach = function(bufnr) return not vim.api.nvim_buf_get_name(bufnr):match "%.env$" end, -- … } ```
The problem with this workaround is that it would disable all of `null-ls` on the specific buffer instead of just a particular formatter/linter. If one is using more than once...
I have the same issue. I'd really love to still have CSS autocomplete and help via coc-css, but it just dies because of the `@apply` rules. All in all it...
This would be very helpful to me.
Good call. I too would want this. Subscribing to this issue like the lazy bastard that I am. 😃
I should mirror https://gist.github.com/gutoandreollo/e12455886149a6c85a70 to this repo so I don't lose it.
On UNIX-like systems, the process doing the generation could lock the file. This would keep other forks from trying to write to it at the same time.
Any update on this @philostler?
I handled this by monkey patching my codebase as such: ``` ruby # Monkey patch. See https://github.com/philostler/rspec-sidekiq/pull/108 if Gem::Dependency.new('rspec-sidekiq', '< 3.0.0').matching_specs.any? module RSpec module Sidekiq module Matchers if Gem::Dependency.new('rspec-rails', '>=...