Merge pull request #1327 from glacambre/uncomment_run_exstr

excmds.ts: uncomment run_exstr
This commit is contained in:
Oliver Blanthorn 2019-02-05 23:36:12 +00:00 committed by GitHub
commit 29ae8458cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)
}
// }}}