Add note on how arguments work for commands. Closes #15

This commit is contained in:
Justin Hawkins 2022-04-06 19:56:28 +09:30
parent 479939e188
commit bdf9730ab0
2 changed files with 9 additions and 2 deletions

View File

@ -11,7 +11,7 @@
<div class="pure-g">
<div class="pure-u-md-1-2 pure-u-1">
<div class="pure-u-md-1-2 pure-u-1 l-box">
<form class="pure-form pure-form-stacked gropple-config">
<fieldset>
@ -53,7 +53,7 @@
</form>
</div>
<div class="pure-u-md-1-2 pure-u-1">
<div class="pure-u-md-1-2 pure-u-1 l-box">
<form class="pure-form gropple-config">
<fieldset>
@ -91,6 +91,7 @@
</template>
<button class="pure-button button-add" href="#" @click.prevent="profile.args.push('');">add arg</button>
<span class="pure-form-message">Arguments for the command. Note that the shell is not used, so there is no need to quote or escape arguments, including those with spaces.</span>
<hr>

View File

@ -8,6 +8,12 @@
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.6/build/pure-min.css" integrity="sha384-Uu6IeWbM+gzNVXJcM9XV3SohHtmWE+3VGi496jvgX1jyvDTXfdK+rfZc8C1Aehk5" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.6/build/grids-responsive-min.css">
<style>
.pure-g > div {
box-sizing: border-box;
}
.l-box {
padding: 2em;
}
pre {
font-size: 60%;
height: 100px;