Skip to content

Commit

Permalink
Replace tester with {query}
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Voloboev committed Mar 20, 2018
1 parent 83a7f34 commit 6f71aad
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing to Alfred Web Searches
There are many ways you can contribute. You can:
- [Edit the CSV file](../../edit/master/workflow/websites.csv) and add more web searches to the workflow. It has a simple structure of argument, followed by comma and then what website is going to be searched. Where `tester` word will be replaced by the user query.
- [Edit the CSV file](../../edit/master/workflow/websites.csv) and add more web searches to the workflow. It has a simple structure of argument, followed by comma and then what website is going to be searched. Where `{query}` will be replaced by the search query.
- Make suggestions and file bugs in [Issues](../../issues/).
- Fix issues and add features with [Pull Requests](../../pulls/).

Expand Down
14 changes: 7 additions & 7 deletions workflow/info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<key>destinationuid</key>
<string>23A8F1A5-6183-4943-84D2-D9E7B9DA9A72</string>
<key>modifiers</key>
<integer>262144</integer>
<integer>1048576</integer>
<key>modifiersubtext</key>
<string>Search Reddit for most recent</string>
<key>vitoclose</key>
Expand Down Expand Up @@ -336,7 +336,7 @@
<key>escaping</key>
<integer>102</integer>
<key>script</key>
<string>echo -n ${URL/tester/$1}</string>
<string>echo -n ${URL/\{query\}/$1}</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
Expand Down Expand Up @@ -516,7 +516,7 @@
<key>escaping</key>
<integer>102</integer>
<key>script</key>
<string>echo -n ${URL/tester/$1}</string>
<string>echo -n ${URL/\{query\}/$1}</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
Expand Down Expand Up @@ -577,7 +577,7 @@
<key>escaping</key>
<integer>102</integer>
<key>script</key>
<string>echo -n ${RECENT/tester/$1}</string>
<string>echo -n ${RECENT/\{query\}/$1}</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
Expand Down Expand Up @@ -631,7 +631,7 @@
<key>escaping</key>
<integer>102</integer>
<key>script</key>
<string>echo -n ${URL/tester/$selection}</string>
<string>echo -n ${URL/\{query\}/$selection}</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
Expand Down Expand Up @@ -834,7 +834,7 @@
<key>escaping</key>
<integer>102</integer>
<key>script</key>
<string>echo -n ${URL/tester/$selection}</string>
<string>echo -n ${URL/\{query\}/$selection}</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
Expand Down Expand Up @@ -1140,7 +1140,7 @@ Post any issues and feature requests you have there. 💜</string>
</dict>
</dict>
<key>version</key>
<string>2.2.7</string>
<string>2.3</string>
<key>webaddress</key>
<string>https://github.com/nikitavoloboev/alfred-web-searches</string>
</dict>
Expand Down

0 comments on commit 6f71aad

Please sign in to comment.