Skip to content

Commit

Permalink
feat: enable remote file loading
Browse files Browse the repository at this point in the history
  • Loading branch information
ex3ndr committed Feb 16, 2024
1 parent ede84ce commit 996ac71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "llama-coder",
"displayName": "Llama Coder",
"description": "Better and self-hosted Github Copilot replacement",
"version": "0.0.12",
"version": "0.0.13",
"icon": "icon.png",
"publisher": "ex3ndr",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/prompts/filter.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type vscode from 'vscode';

export function isSupported(doc: vscode.TextDocument) {
return doc.uri.scheme === 'file' || doc.uri.scheme === 'vscode-notebook-cell';
return doc.uri.scheme === 'file' || doc.uri.scheme === 'vscode-notebook-cell' || doc.uri.scheme === 'vscode-remote';
}

export function isNotNeeded(doc: vscode.TextDocument, position: vscode.Position, context: vscode.InlineCompletionContext): boolean {
Expand Down

0 comments on commit 996ac71

Please sign in to comment.