We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the feature and the current behavior/state.
add command mode: quicklink to package.json
quicklink
"commands": [ { "name": "google-search", "title": "Search Google", "description": "Search Google", "mode": "quicklink" },
export default async (query: string): Promise<string> =>{ return `https://google.com/search?q=${query}` }
Will this change the current API? How?
no
Who will benefit from this feature?
developers and users
Any Other info.
The text was updated successfully, but these errors were encountered:
I think this is essentially the same as adding args to no-view commands (#59):
no-view
"commands": [ { "name": "google-search", "title": "Search Google", "description": "Search Google", "mode": "no-view", "args": [ {"type": "string", "placeholder": "query"} ] }
Then command with one args could be used as fallback commands (similarely to script commands).
Sorry, something went wrong.
Hey, what @pomdtr is correct. This can be achieved via a no-view Command, then set as Fallback Command. Thanks!
No branches or pull requests
Describe the feature and the current behavior/state.
add command mode:
quicklink
to package.jsonWill this change the current API? How?
no
Who will benefit from this feature?
developers and users
Any Other info.
The text was updated successfully, but these errors were encountered: