-
-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Full-Context awareness in a Git repository or Folder #360
Comments
I would also love this! 🙌 |
FYI - You might want to look to this discussion https://discord.com/channels/1200633211236122665/1209115196702859294/1261373682542968842 TLDR: not yet. |
I dont event get my whole project/dir (or rather, not even "all open buffers" as documented) as context when using |
For now this was added, that should help AI to at least figure out structure of the project |
Also very late reply, but we use github embeddings queries to determine if something should be included in context or not. and this is based on your prompt query so sometimes it can just ditch less relevant files. Also it depends on maximum token limit, but for example claude can handle a lot of data. |
The files context provider now supports two modes: - 'list' (default) - includes only filenames in the workspace - 'full' - includes both filenames and their content This change provides more flexibility when needing full context from workspace files. The implementation also adds proper filetype detection and filtering for files to ensure only text files are included. Closes CopilotC-Nvim#360
The files context provider now supports two modes: - 'list' (default) - includes only filenames in the workspace - 'full' - includes both filenames and their content This change provides more flexibility when needing full context from workspace files. The implementation also adds proper filetype detection and filtering for files to ensure only text files are included. Closes CopilotC-Nvim#360 Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
The files context provider now supports two modes: - 'list' (default) - includes only filenames in the workspace - 'full' - includes both filenames and their content This change provides more flexibility when needing full context from workspace files. The implementation also adds proper filetype detection and filtering for files to ensure only text files are included. Closes CopilotC-Nvim#360 Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
The files context provider now supports two modes: - 'list' (default) - includes only filenames in the workspace - 'full' - includes both filenames and their content This change provides more flexibility when needing full context from workspace files. The implementation also adds proper filetype detection and filtering for files to ensure only text files are included. Closes #360 Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
Ok this is now mostly implemented with |
Hi, I wanted to ask if there's a plan for implementing full-context awareness in Git repositories or in general, projects opened in Neovim. Currently, I only find the option to choose between a single buffer or multiple buffers. If this is not currently possible, is it possible to customize the context for Copilot?
The text was updated successfully, but these errors were encountered: