Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,6 @@ tmp/
logs/

*.log
temp-*
temp-*

.venv/
8 changes: 2 additions & 6 deletions github-copilot-features-status/copilot-ide-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,16 @@

| Models | VS Code | Visual Studio | JetBrains | Xcode | Eclipse |
|----------------------------|---------|---------------|-----------|-------|---------|
| Claude Sonnet 3.5 | ✅ | ✅ | ✅ | ✅ | ✅ |
| Claude Sonnet 3.7 | ✅ | ✅ | ✅ | ✅ | ✅ |
| Claude Sonnet 3.7 Thinking | ✅ | ✅ | ✅ | ✅ | ✅ |
| Claude Sonnet 4 | ✅ | ✅ | ✅ | ✅ | ✅ |
| Claude Sonnet 4.5 | ✅ | ✅ | ✅ | ✅ | ✅ |
| Claude Opus 4.1 | ✅ | ✅ | ✅ | ✅ | ✅ |
| Gemini 2.0 Flash | ✅ | ✅ | ✅ | ✅ | ✅ |
| Gemini 2.5 Pro | ✅ | ✅ | ✅ | ✅ | ✅ |
| GPT-4.1 | ✅ | ✅ | ✅ | ✅ | ✅ |
| o3 | ✅ | ✅ | ✅ | ✅ | ✅ |
| o4-mini | ✅ | ✅ | ✅ | ✅ | ✅ |
| GPT-5 | ✅ | ✅ | ✅ | ✅ | ✅ |
| GPT-5 mini | ✅ | ✅ | ✅ | ✅ | ✅ |
| GPT-5-Codex | ✅ | ❌ | ❌ | ❌ | ❌ |
| Grok Code Fast 1 | ✅ | | | | |
| Grok Code Fast 1 | ✅ | | | | |
| Auto | ✅ | ❌ | ❌ | ❌ | ❌ |

# GitHub Copilot Code Completion Features Comparison
Expand Down
3 changes: 2 additions & 1 deletion github-copilot-features-status/copilot-web-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@
| Guideline for Code Review | ✅ | ❌ | ❌ | ✅ |
| Explain Failed Action Job | ✅ | ✅ | ✅ | ✅ |
| Remote Index | ✅ | ✅ | ✅ | ✅ |
| GitHub Models | ✅ | ✅ | ✅ | ✅ |
| GitHub Models | ✅ | ✅ | ✅ | ✅ |
| GitHub Spark | ✅ | ❌ | ❌ | ✅ |
58 changes: 58 additions & 0 deletions github-copilot-features/refactor/nullptr.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
#include <iostream>
#include <vector>
#include <string>

class Data {
public:
std::string name;
int value;
Data(std::string n, int v) : name(n), value(v) {}
};




class Container {
private:
std::vector<Data*> dataList;

public:
void addData(Data* data) {
dataList.push_back(data);
}

Data* findData(const std::string& name) {
for (auto data : dataList) {
if (data && data->name == name) {
return data;
}
}
return nullptr;
}
};

class Processor {
private:
Container* container;

public:
Processor(Container* c) : container(c) {}

void processData(const std::string& name) {
Data* data = container->findData(name);

std::cout << "Processing data: " << data->name << ", value: " << data->value << std::endl;
}
};

int main() {
Container container;
container.addData(new Data("item1", 10));
container.addData(new Data("item2", 20));

Processor processor(&container);
processor.processData("item1");
processor.processData("item3");

return 0;
}
Loading