so I've added added a google command, but it bugs me that every time I attempt to search for something that requires a space to separate between words, the link gets created with only the first word that was added. SO, unless you know to copy the beginning of the https all through the end of what you type, you won't get the correct answer. I've tried quite a few replacements but don't work but essentially, I want to replace a space for %20 and I keep getting "Unexpected end of input". Here is some examples of what I've tried:
$(eval https://www.google.com/search?q=$(query).replace(' ',/%/2/0))
$(eval https://www.google.com/search?q=$(query).replace(' ',"%20"))
$(eval https://www.google.com/search?q=$(query).replace(' ',"%20"))
$(eval https://www.google.com/search?q=$(querystring).replace(' ',"%20"))
$(eval https://www.google.com/search?q=$(querystring).replace(' ',+))
$(eval https://www.google.com/search?q=$(query).replace(' ',%20))
... and single quotes replaced with double quotes, etc, etc, etc. What am I missing?