Skip to content

Commit 07dcc18

Browse files
authored
fix(config): correct AGENTS.md filename casing (#1511)
The instruction file 'AGENTS.MD' was renamed to 'AGENTS.md' to match the actual file name and ensure it is properly detected in the working directory. This resolves issues on case-sensitive file systems.
1 parent 068e257 commit 07dcc18

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lua/CopilotChat/config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ return {
109109
-- Instruction files to look for in current working directory
110110
instruction_files = {
111111
'.github/copilot-instructions.md',
112-
'AGENTS.MD',
112+
'AGENTS.md',
113113
},
114114

115115
selection = 'visual', -- Selection source

0 commit comments

Comments
 (0)