Skip to content

Commit

Permalink
Change default command
Browse files Browse the repository at this point in the history
  • Loading branch information
TomWright committed Nov 30, 2023
1 parent f88d7c6 commit 30b1cbc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
export let snippet = {
id: null,
input: input || `{\n "name": "Tom"\n}`,
args: args || '-p json .name',
args: args || '-r json .name',
version: null
}
Expand Down Expand Up @@ -267,9 +267,9 @@
<div id="arguments-help" class="notes" class:visible={argumentsHelpVisible}>
<p>Use quotes only if the input value contains a space or a quote:</p>
<ul>
<li>put string -p json .text value</li>
<li>put string -p json .text 'Toms value'</li>
<li>put string -p json .text "Tom's value"</li>
<li>put string -r json .text value</li>
<li>put string -r json .text 'Toms value'</li>
<li>put string -r json .text "Tom's value"</li>
</ul>
<p>Including quotes outside of this context may provide unexpected results. Escaping characters is not
supported.</p>
Expand Down

0 comments on commit 30b1cbc

Please sign in to comment.