feat: Add option to disable auto-adding current file when opening new chat (#2764)
Co-authored-by: yetone <1206493+yetone@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -500,6 +500,7 @@ _See [config.lua#L9](./lua/avante/config.lua) for the full config_
|
|||||||
support_paste_from_clipboard = false,
|
support_paste_from_clipboard = false,
|
||||||
minimize_diff = true, -- Whether to remove unchanged lines when applying a code block
|
minimize_diff = true, -- Whether to remove unchanged lines when applying a code block
|
||||||
enable_token_counting = true, -- Whether to enable token counting. Default to true.
|
enable_token_counting = true, -- Whether to enable token counting. Default to true.
|
||||||
|
auto_add_current_file = true, -- Whether to automatically add the current file when opening a new chat. Default to true.
|
||||||
auto_approve_tool_permissions = true, -- Default: auto-approve all tools (no prompts)
|
auto_approve_tool_permissions = true, -- Default: auto-approve all tools (no prompts)
|
||||||
-- Examples:
|
-- Examples:
|
||||||
-- auto_approve_tool_permissions = false, -- Show permission prompts for all tools
|
-- auto_approve_tool_permissions = false, -- Show permission prompts for all tools
|
||||||
|
|||||||
@@ -360,6 +360,7 @@ _请参见 [config.lua#L9](./lua/avante/config.lua) 以获取完整配置_
|
|||||||
support_paste_from_clipboard = false,
|
support_paste_from_clipboard = false,
|
||||||
minimize_diff = true, -- 是否在应用代码块时删除未更改的行
|
minimize_diff = true, -- 是否在应用代码块时删除未更改的行
|
||||||
enable_token_counting = true, -- 是否启用令牌计数。默认为 true。
|
enable_token_counting = true, -- 是否启用令牌计数。默认为 true。
|
||||||
|
auto_add_current_file = true, -- 打开新聊天时是否自动添加当前文件。默认为 true。
|
||||||
enable_cursor_planning_mode = false, -- 是否启用 Cursor 规划模式。默认为 false。
|
enable_cursor_planning_mode = false, -- 是否启用 Cursor 规划模式。默认为 false。
|
||||||
enable_claude_text_editor_tool_mode = false, -- 是否启用 Claude 文本编辑器工具模式。
|
enable_claude_text_editor_tool_mode = false, -- 是否启用 Claude 文本编辑器工具模式。
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -496,6 +496,7 @@ M._defaults = {
|
|||||||
---7. support_paste_from_clipboard : Whether to support pasting image from clipboard. This will be determined automatically based whether img-clip is available or not.
|
---7. support_paste_from_clipboard : Whether to support pasting image from clipboard. This will be determined automatically based whether img-clip is available or not.
|
||||||
---8. minimize_diff : Whether to remove unchanged lines when applying a code block
|
---8. minimize_diff : Whether to remove unchanged lines when applying a code block
|
||||||
---9. enable_token_counting : Whether to enable token counting. Default to true.
|
---9. enable_token_counting : Whether to enable token counting. Default to true.
|
||||||
|
---10. auto_add_current_file : Whether to automatically add the current file when opening a new chat. Default to true.
|
||||||
behaviour = {
|
behaviour = {
|
||||||
auto_focus_sidebar = true,
|
auto_focus_sidebar = true,
|
||||||
auto_suggestions = false, -- Experimental stage
|
auto_suggestions = false, -- Experimental stage
|
||||||
@@ -514,6 +515,7 @@ M._defaults = {
|
|||||||
auto_check_diagnostics = true,
|
auto_check_diagnostics = true,
|
||||||
enable_fastapply = false,
|
enable_fastapply = false,
|
||||||
include_generated_by_commit_line = false, -- Controls if 'Generated-by: <provider/model>' line is added to git commit message
|
include_generated_by_commit_line = false, -- Controls if 'Generated-by: <provider/model>' line is added to git commit message
|
||||||
|
auto_add_current_file = true, -- Whether to automatically add the current file when opening a new chat
|
||||||
},
|
},
|
||||||
prompt_logger = { -- logs prompts to disk (timestamped, for replay/debugging)
|
prompt_logger = { -- logs prompts to disk (timestamped, for replay/debugging)
|
||||||
enabled = true, -- toggle logging entirely
|
enabled = true, -- toggle logging entirely
|
||||||
|
|||||||
@@ -1672,15 +1672,18 @@ function Sidebar:initialize()
|
|||||||
local buf_ft = api.nvim_get_option_value("filetype", { buf = self.code.bufnr })
|
local buf_ft = api.nvim_get_option_value("filetype", { buf = self.code.bufnr })
|
||||||
if vim.list_contains(Config.selector.exclude_auto_select, buf_ft) then return self end
|
if vim.list_contains(Config.selector.exclude_auto_select, buf_ft) then return self end
|
||||||
|
|
||||||
local buf_path = api.nvim_buf_get_name(self.code.bufnr)
|
|
||||||
-- if the filepath is outside of the current working directory then we want the absolute path
|
|
||||||
local filepath = Utils.file.is_in_project(buf_path) and Utils.relative_path(buf_path) or buf_path
|
|
||||||
Utils.debug("Sidebar:initialize adding buffer to file selector", buf_path)
|
|
||||||
|
|
||||||
self.file_selector:reset()
|
self.file_selector:reset()
|
||||||
|
|
||||||
local stat = vim.uv.fs_stat(filepath)
|
-- Only auto-add current file if configured to do so
|
||||||
if stat == nil or stat.type == "file" then self.file_selector:add_selected_file(filepath) end
|
if Config.behaviour.auto_add_current_file then
|
||||||
|
local buf_path = api.nvim_buf_get_name(self.code.bufnr)
|
||||||
|
-- if the filepath is outside of the current working directory then we want the absolute path
|
||||||
|
local filepath = Utils.file.is_in_project(buf_path) and Utils.relative_path(buf_path) or buf_path
|
||||||
|
Utils.debug("Sidebar:initialize adding buffer to file selector", buf_path)
|
||||||
|
|
||||||
|
local stat = vim.uv.fs_stat(filepath)
|
||||||
|
if stat == nil or stat.type == "file" then self.file_selector:add_selected_file(filepath) end
|
||||||
|
end
|
||||||
|
|
||||||
self:reload_chat_history()
|
self:reload_chat_history()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user