We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0b0c25 commit ae7db70Copy full SHA for ae7db70
src/extension.ts
@@ -11,8 +11,7 @@ export function activate(context: vscode.ExtensionContext) {
11
// Create status bar
12
const openSettings = 'llama.openSettings';
13
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!`);
+ vscode.commands.executeCommand('workbench.action.openSettings', '@ext:ex3ndr.llama-coder');
16
}));
17
let statusBarItem = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Right, 100);
18
statusBarItem.command = openSettings;
0 commit comments