From 5743f0ce7dbb9273a7b0032dee6646a6df625710 Mon Sep 17 00:00:00 2001 From: glacambre Date: Tue, 5 Feb 2019 08:27:59 +0100 Subject: [PATCH] excmds.ts: uncomment run_exstr Closes https://github.com/tridactyl/tridactyl/issues/1275 --- src/excmds.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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) } // }}}