From 59180784c7bed9b703428a2d0614e0b0efb94b6d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= <dev@felschr.com>
Date: Mon, 27 Nov 2023 22:59:46 +0100
Subject: [PATCH] fix(neovim): disable procMacro ignores again

---
 home/editors/neovim/lsp/lsp.lua | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/home/editors/neovim/lsp/lsp.lua b/home/editors/neovim/lsp/lsp.lua
index 2baf1b0..4709a0c 100644
--- a/home/editors/neovim/lsp/lsp.lua
+++ b/home/editors/neovim/lsp/lsp.lua
@@ -122,9 +122,9 @@ config.rust_analyzer.setup {
       procMacro = {
         enable = true,
         ignored = {
-          -- cfg_eval can cause types to be unavailable
-          core = { "cfg_eval" },
-          cfg_eval = { "cfg_eval" },
+          -- See https://github.com/rust-lang/rust-analyzer/issues/15800
+          -- core = { "cfg_eval" },
+          -- cfg_eval = { "cfg_eval" },
         },
       },
     },