This commit is contained in:
Alexander Courtis 2024-11-08 18:09:44 +11:00
parent a219a19f02
commit f2dd8a4397
2 changed files with 18 additions and 18 deletions

View File

@ -50,17 +50,17 @@ local Builder = Class:extend()
---@protected
---@param args BuilderArgs
function Builder:new(args)
self.explorer = args.explorer
self.index = 0
self.depth = 0
self.hl_args = {}
self.explorer = args.explorer
self.index = 0
self.depth = 0
self.hl_args = {}
self.combined_groups = {}
self.lines = {}
self.markers = {}
self.signs = {}
self.extmarks = {}
self.virtual_lines = {}
self.decorators = {
self.lines = {}
self.markers = {}
self.signs = {}
self.extmarks = {}
self.virtual_lines = {}
self.decorators = {
-- priority order
DecoratorCut({ explorer = args.explorer }),
DecoratorCopied({ explorer = args.explorer }),
@ -71,7 +71,7 @@ function Builder:new(args)
DecoratorOpened({ explorer = args.explorer }),
DecoratorGit({ explorer = args.explorer })
}
self.hidden_display = Builder:setup_hidden_display_function(self.explorer.opts)
self.hidden_display = Builder:setup_hidden_display_function(self.explorer.opts)
end
---Insert ranged highlight groups into self.highlights

View File

@ -36,8 +36,8 @@ local Event = Class:extend()
---@param args EventArgs
function Event:new(args)
self.destroyed = false
self.path = args.path
self.fs_event = nil
self.path = args.path
self.fs_event = nil
self.listeners = {}
end
@ -163,12 +163,12 @@ local Watcher = Class:extend()
---@protected
---@param args WatcherArgs
function Watcher:new(args)
self.data = args.data
self.data = args.data
self.destroyed = false
self.path = args.path
self.callback = args.callback
self.files = args.files
self.listener = nil
self.path = args.path
self.callback = args.callback
self.files = args.files
self.listener = nil
end
---Static factory method