Files
envr/cmd_nushell_completion.odin

12 lines
198 B
Odin

package main
import "core:fmt"
COMPLETION_SCRIPT: string : string(#load("mod.nu"))
cmd_nushell_completion :: proc(cmd: ^Command) {
// TODO: Use buffered writer?
fmt.print(COMPLETION_SCRIPT)
}