mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:37:44 +00:00
Assistant: Trim terminal command before displaying or running it
This commit is contained in:
parent
941087ee25
commit
35b930112f
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ void TerminalProvider::query(String const& query, Function<void(NonnullRefPtrVec
|
||||||
if (!query.starts_with('$'))
|
if (!query.starts_with('$'))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
auto command = query.substring(1);
|
auto command = query.substring(1).trim_whitespace();
|
||||||
|
|
||||||
NonnullRefPtrVector<Result> results;
|
NonnullRefPtrVector<Result> results;
|
||||||
results.append(adopt_ref(*new TerminalResult(move(command))));
|
results.append(adopt_ref(*new TerminalResult(move(command))));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue