fix(#1831): remove windows executable functionality due to occasional vim freeze and performance concerns (#1868)

* #1831 exploratory testing: disable file executable checks

* fix(#1831): remove windows executable functionality
This commit is contained in:
Alexander Courtis
2022-12-31 12:34:55 +11:00
committed by GitHub
parent 9e4c39572f
commit 3c4958ab3d
7 changed files with 44 additions and 97 deletions

View File

@@ -23,6 +23,10 @@ local function populate_children(handle, cwd, node, git_status)
end
local abs = utils.path_join { cwd, name }
local pn = string.format("explore populate_children %s", abs)
local ps = log.profile_start(pn)
t = get_type_from(t, abs)
if not filters.should_filter(abs, filter_status) and not nodes_by_path[abs] then
local child = nil
@@ -42,6 +46,8 @@ local function populate_children(handle, cwd, node, git_status)
explorer_node.update_git_status(child, node_ignored, git_status)
end
end
log.profile_end(ps, pn)
end
end