Explorar el Código

fix(nvimtree): escape the dot character in custom filter (#2493)

Pascal Hubrecht hace 3 años
padre
commit
75cfebbfee
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      lua/lvim/core/nvimtree.lua

+ 1 - 1
lua/lvim/core/nvimtree.lua

@@ -68,7 +68,7 @@ function M.config()
       },
       filters = {
         dotfiles = false,
-        custom = { "node_modules", ".cache" },
+        custom = { "node_modules", "\\.cache" },
       },
       trash = {
         cmd = "trash",