Skip to content

Commit 75cde5d

Browse files
committed
fix: enable find_by_full_path_words option, remove extra log
1 parent f9aa7c6 commit 75cde5d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lua/neo-tree/sources/filesystem/lib/filter_external.lua

-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ M.find_files = function(opts)
120120
end
121121
end
122122

123-
log.info(cmd, args)
124123
Job
125124
:new({
126125
command = cmd,

lua/neo-tree/sources/filesystem/lib/fs_scan.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ M.get_items_async = function(state, parent_id, path_to_reveal, callback)
112112
path = root.path,
113113
term = state.search_pattern,
114114
find_args = state.find_args,
115-
--find_by_full_path_words = state.find_by_full_path_words,
115+
find_by_full_path_words = state.find_by_full_path_words,
116116
on_insert = function(err, path)
117117
if err and #err > 0 then
118118
log.error(err, path)

0 commit comments

Comments
 (0)