fix(file_selector): empty buffer and chat without file context. (#953)

This commit is contained in:
Christopher Brewin
2024-12-18 21:22:40 +10:00
committed by GitHub
parent dde035831a
commit 8067cb0240
2 changed files with 6 additions and 2 deletions

View File

@@ -33,6 +33,8 @@ function FileSelector:reset()
end
function FileSelector:add_selected_file(filepath)
if not filepath or filepath == "" then return end
local uniform_path = Utils.uniform_path(filepath)
-- Avoid duplicates
if not vim.tbl_contains(self.selected_filepaths, uniform_path) then