Skip to content

Commit 987d668

Browse files
committed
Merge commit '0692cba60baccf6b90a377ec7814173b33d35abf'
2 parents 38a77bb + 0692cba commit 987d668

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Llama Coder is a better and self-hosted Github Copilot replacement for VS Studio
1414

1515
Minimum required RAM: 16GB is a minimum, more is better since even smallest model takes 5GB of RAM.
1616
The best way: dedicated machine with RTX 4090. Install [Ollama](https://ollama.ai) on this machine and configure endpoint in extension settings to offload to this machine.
17-
Second best way: run on MacBooc M1/M2/M3 with enougth RAM (more == better, but 10gb extra would be enougth).
17+
Second best way: run on MacBook M1/M2/M3 with enougth RAM (more == better, but 10gb extra would be enougth).
1818
For windows notebooks: it runs good with decent GPU, but dedicated machine with a good GPU is recommended. Perfect if you have a dedicated gaming PC.
1919

2020
## Local Installation
@@ -50,7 +50,7 @@ Most of the problems could be seen in output of a plugin in VS Code extension ou
5050

5151
## [0.0.10]
5252
- Adding ability to pick a custom model
53-
- Asking user if he wants to download model if it is not available
53+
- Asking user if they want to download model if it is not available
5454

5555
## [0.0.9]
5656
- Adding deepseek 1b model and making it default
@@ -69,4 +69,4 @@ Most of the problems could be seen in output of a plugin in VS Code extension ou
6969

7070
## [0.0.4]
7171

72-
- Initial release of Llama Coder
72+
- Initial release of Llama Coder

src/extension.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ export function activate(context: vscode.ExtensionContext) {
1111
// Create status bar
1212
const openSettings = 'llama.openSettings';
1313
context.subscriptions.push(vscode.commands.registerCommand(openSettings, () => {
14-
// const n = getNumberOfSelectedLines(vscode.window.activeTextEditor);
15-
// vscode.window.showInformationMessage(`Yeah, ${n} line(s) selected... Keep going!`);
14+
vscode.commands.executeCommand('workbench.action.openSettings', '@ext:ex3ndr.llama-coder');
1615
}));
1716
let statusBarItem = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Right, 100);
1817
statusBarItem.command = openSettings;

0 commit comments

Comments
 (0)