Move scripts to scripts/ and update loader paths; use remote import_map with --no-config

This commit is contained in:
Karolis2011 2025-11-29 23:48:28 +02:00
parent 4322bdeb1f
commit 7f69b3e59c
4 changed files with 662 additions and 7 deletions

6
configure_ssh_key.ts Executable file → Normal file
View file

@ -27,7 +27,11 @@
*/
// Export completion function for loader
import type { CompletionContext } from "./completions.d.ts";
interface CompletionContext {
args: string[];
current: string;
position: number;
}
export async function getCompletions(ctx: CompletionContext): Promise<string[]> {
const { current, args } = ctx;