You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| type | Input type. For now only "text" value available. | Yes | 1.2.0+ |
89
+
| type | Input type. For now only "text" value available. | Yes | 1.2.0+ |
90
90
| placeholder | Placeholder for the input field. | Yes | 1.2.0+ |
91
91
| optional | Set to `true` if you want to mark argument as optional. When not provided, argument is considered to be required (Raycast will not allow to execute the script if argument input is empty) | No | 1.3.0+ |
92
92
| percentEncoded| Set to `true` if you want Raycast to perform percent encoding on the argument value before passing it to the script. Can be handy for scripts that pass argument directly to URL query | No | 1.4.0+ |
@@ -136,7 +136,7 @@ We also append `/usr/local/bin` to `$PATH` variable so you can use your local sh
136
136
## Troubleshooting
137
137
138
138
If a script doesn't appear in the commands list, make sure these requirements are met:
139
-
* Script file is executable (you can run `file <path to script>` command in terminal to check it). To make the script executable, run: `chmod +x <path to script>`
139
+
* Script file is executable (you can run `file <path to script>` command in terminal to check it). To make the script executable, run: `chmod +x <path to script>`
140
140
* Filename doesn't contain `.template.` string
141
141
* All required metadata parameters are provided. See the table above which parameters are required.
142
142
* You use either `#` or `//` comments for metadata parameters
0 commit comments