Skip to content

Commit 996ac71

Browse files
committed
feat: enable remote file loading
1 parent ede84ce commit 996ac71

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "llama-coder",
33
"displayName": "Llama Coder",
44
"description": "Better and self-hosted Github Copilot replacement",
5-
"version": "0.0.12",
5+
"version": "0.0.13",
66
"icon": "icon.png",
77
"publisher": "ex3ndr",
88
"repository": {

src/prompts/filter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type vscode from 'vscode';
22

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

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

0 commit comments

Comments
 (0)