diff --git a/src/excmds.ts b/src/excmds.ts index b38e9606..eac1a0c8 100644 --- a/src/excmds.ts +++ b/src/excmds.ts @@ -3797,12 +3797,10 @@ export async function hint(option?: string, selectors?: string, ...rest: string[ * Hacky ex string parser. * * Use it for fire-and-forget running of background commands in content. - * - * @hidden */ -//#content_helper +//#content export function run_exstr(...commands: string[]) { - Messaging.message("commandline_background", "recvExStr", commands) + return Messaging.message("commandline_background", "recvExStr", commands) } // }}}