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
启用模块后会导致 raycast api 的 Action.Open 和 Action.OpenWith 的 onOpen 回调函数跳过执行。
Action.Open
Action.OpenWith
onOpen
在官方人员的指引下使用 log stream --predicate "subsystem == 'com.raycast.macos'" --level debug --style compact >> ~/Desktop/ray.$(date +%Y%m%d).log 命令依然无法观察到相关的错误
log stream --predicate "subsystem == 'com.raycast.macos'" --level debug --style compact >> ~/Desktop/ray.$(date +%Y%m%d).log
The text was updated successfully, but these errors were encountered:
测试代码:
export default function Command() { console.log("test"); return ( <List> {ITEMS.map((item) => ( <List.Item key={item.id} icon={item.icon} title={item.title} subtitle={item.subtitle} accessories={[{ icon: Icon.Text, text: item.accessory }]} actions={ <ActionPanel> <Action.CopyToClipboard content={item.title} onCopy={() => { console.log("Test copy"); }} /> <Action.Open target="/tmp" title="Open Test" onOpen={() => { console.log("Test onOpen"); }} /> </ActionPanel> } /> ))} </List> ); }
Sorry, something went wrong.
No branches or pull requests
启用模块后会导致 raycast api 的
Action.Open
和Action.OpenWith
的onOpen
回调函数跳过执行。在官方人员的指引下使用
log stream --predicate "subsystem == 'com.raycast.macos'" --level debug --style compact >> ~/Desktop/ray.$(date +%Y%m%d).log
命令依然无法观察到相关的错误The text was updated successfully, but these errors were encountered: