[go: up one dir, main page]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to add showMsg RPC #3

Open
theashishmaurya opened this issue Mar 3, 2023 · 0 comments
Open

How to add showMsg RPC #3

theashishmaurya opened this issue Mar 3, 2023 · 0 comments

Comments

@theashishmaurya
Copy link
theashishmaurya commented Mar 3, 2023

I am trying to add the shows but it's not working nor is shell running.

import open from "open";
import logger from "./lib/logger";

import { Flow } from "./lib/flow";
import { z } from "zod";

const events = ["fetch"] as const;
type Events = (typeof events)[number];



const flow = new Flow<Events>("");

flow.on("query" , (params) =>{
    
    const [query] = z.array(z.string()).parse(params);
    let promt:string = query;

    flow.showResult({
        title: query,
       
        method: "fetch",
        parameters: [promt],
        dontHideAfterAction: true,
        iconPath: "test",

    })
    
} )



    

flow.on("fetch", async (params) => {

    const [promt] = z.array(z.string()).parse(params);
    
    let message = "test"

    flow.shellRun({
        command: "echo " + message,
    })
})

flow.run()



Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant