From ba2c700af6d24a0ace770b78353b9732a1650c7b Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 29 Feb 2024 16:28:28 +0000 Subject: [PATCH] Add TODO --- lua/opdavies/lsp/handlers.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lua/opdavies/lsp/handlers.lua b/lua/opdavies/lsp/handlers.lua index e496257..b49a3de 100644 --- a/lua/opdavies/lsp/handlers.lua +++ b/lua/opdavies/lsp/handlers.lua @@ -5,7 +5,9 @@ M.definition = function() vim.lsp.buf_request(0, "textDocument/definition", params, function(err, result, ctx, config) local new_result = vim.tbl_filter(function(v) - -- Remove any referneces to the nix store via the .direnv directory. + -- TODO: remove definitions within vendor-bin directory for PHP files? + + -- Remove any definitions within the nix store via the .direnv directory. return not string.find(v.targetUri, ".direnv") end, result)