Skip to content

Commit

Permalink
fix: add missing keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
brpaz committed Jun 14, 2020
1 parent 53537dd commit 438d8f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion brotab/listeners.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@ def on_event(self, event, extension):

if data["action"] == REFRESH_TABS:
extension.brotab_client.index()
kw = extension.preferences["kw"]
extension.notify("Index Finished")
return SetUserQueryAction("brotab ")
return SetUserQueryAction("%s " % kw)
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
},
"preferences": [
{
"id": "ext_kw",
"id": "kw",
"type": "keyword",
"name": "Brotab",
"description": "Control your browser's tabs",
"description": "Control your browsers tabs",
"default_value": "brotab"
}
]
Expand Down

0 comments on commit 438d8f5

Please sign in to comment.