Bläddra i källkod

fix: lsp root can get very annoying when working with multiple languages. User is still able to turn it on.

ChristianChiarulli 3 år sedan
förälder
incheckning
16fd37c8bf
1 ändrade filer med 2 tillägg och 1 borttagningar
  1. 2 1
      lua/lvim/core/project.lua

+ 2 - 1
lua/lvim/core/project.lua

@@ -18,7 +18,8 @@ function M.config()
     --- **"pattern"** uses vim-rooter like glob pattern matching. Here
     --- order matters: if one is not detected, the other is used as fallback. You
     --- can also delete or rearangne the detection methods.
-    detection_methods = { "lsp", "pattern" },
+    -- detection_methods = { "lsp", "pattern" }, -- NOTE: lsp detection will get annoying with multiple langs in one project
+    detection_methods = { "pattern" },
 
     ---@usage patterns used to detect root dir, when **"pattern"** is in detection_methods
     patterns = { ".git", "_darcs", ".hg", ".bzr", ".svn", "Makefile", "package.json" },