my eye

Add voice dictated query to input element

Committed b0a729

--- a/canopy/static/enliven.js
+++ b/canopy/static/enliven.js

       return
     }
     if (input == 'help') goHelp()                    // help
-    else if (input.startsWith('query for')) {      // query for
+    else if (input.startsWith('query for')) {        // query for
       const query = input.slice(10)
+      document.querySelector('input[name=q]').value = query
       go(`/search?q=${query}`)
     } else if (input.startsWith('go')) {             // go
       const where = input.slice(3)