Move scripts to scripts/ and update loader paths; use remote import_map with --no-config
This commit is contained in:
parent
4322bdeb1f
commit
7f69b3e59c
4 changed files with 662 additions and 7 deletions
6
configure_ssh_key.ts
Executable file → Normal file
6
configure_ssh_key.ts
Executable file → Normal 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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue