fix bug in the telescope ignore patterns
This commit is contained in:
parent
c4a78493d4
commit
d0d4aedacb
6
init.lua
6
init.lua
|
@ -131,11 +131,11 @@ telscope.setup {
|
||||||
defaults = {
|
defaults = {
|
||||||
file_ignore_patterns = {
|
file_ignore_patterns = {
|
||||||
"node_modules",
|
"node_modules",
|
||||||
".idea",
|
"%.idea",
|
||||||
"project/target", --https://www.lua.org/pil/20.2.html
|
"project/target", --https://www.lua.org/pil/20.2.html
|
||||||
"target", --https://www.lua.org/pil/20.2.html
|
"target", --https://www.lua.org/pil/20.2.html
|
||||||
".cache",
|
"%.cache",
|
||||||
".cpcache",
|
"%.cpcache",
|
||||||
"cljs%-runtime" },
|
"cljs%-runtime" },
|
||||||
mappings = {
|
mappings = {
|
||||||
i = {
|
i = {
|
||||||
|
|
Loading…
Reference in New Issue