✨ The feature
Add inline code suggestions (ghost text / Copilot-style) similar to GitHub Copilot and other extensions like Continue. The idea is to provide real-time completions while the user types, directly inside the editor.
Also allow selecting which AI model powers these suggestions.
🎯 The problem
Right now the extension is mostly chat-based, which breaks the coding flow and is slower compared to inline suggestions used in tools like Copilot or Continue.
💡 Proposed solution
Implement inline completions that appear as ghost text while typing, similar to Copilot/Continue behavior.
Add a setting to choose the model used for suggestions, for example:
{
"inlineSuggestions": true,
"inlineSuggestionsModel": "deepseek-v4-flash"
}
✨ The feature
Add inline code suggestions (ghost text / Copilot-style) similar to GitHub Copilot and other extensions like Continue. The idea is to provide real-time completions while the user types, directly inside the editor.
Also allow selecting which AI model powers these suggestions.
🎯 The problem
Right now the extension is mostly chat-based, which breaks the coding flow and is slower compared to inline suggestions used in tools like Copilot or Continue.
💡 Proposed solution
Implement inline completions that appear as ghost text while typing, similar to Copilot/Continue behavior.
Add a setting to choose the model used for suggestions, for example:
{ "inlineSuggestions": true, "inlineSuggestionsModel": "deepseek-v4-flash" }