kit icon indicating copy to clipboard operation
kit copied to clipboard

Script Kit. Automate Anything.

Results 161 kit issues
Sort by recently updated
recently updated
newest added

These are the behaviors I'd naïvely expect given the names of the config properties, which are otherwise undocumented: ```ts // Expected: The choice is shown as soon as I type...

I don't anticipate the return value to be checked at any point in the future, thus allowing users to return whatever they want from the promise should be fine. See...

It's very jarring to go through the guides as one long document with no table of contents (which GitHub currently doesn't support outside of the main readme file).

I'm trying to keep a script running while I do something in another window but it keeps closing whenever the ScriptKit window loses focus. The log shows: [2023-03-18 21:49:37.393] [info]...

I would like to have a different label and value for the arg function as follows: ```javascript let MY_API_USER = await env("MY_API_USER", async () => { return await arg("Select a...

(1) ~~Not sure if I also need to do this in `terminal.ts`?~~ Nah, it just redirects to `arg` (2) I also noticed that you can't pass a filename to the...

So, the command `focusTab` is always opening a new tab, regardless of the URL being the exact same one and even if the actual tab is focused. Env: Mac OS...

I have the following simple script ```ts // Name: RecycleDefaultAppPool import "@johnlindquist/kit"; function configure() { $.shell = "powershell.exe"; } function showNotificationUsingPowershell(message: string) { console.log(`Set to ${$.shell}`); const script = `Add-Type...