Skip to content

Commit

Permalink
Merge pull request #17 from Garulf/handle-asterisk-keyword-auto-complete
Browse files Browse the repository at this point in the history
Handle auto complete
  • Loading branch information
Garulf authored Jan 2, 2022
2 parents 435af48 + bbc8b17 commit 51c4b10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def query(self, query):
context=[icon["name"]],
method=self.put,
parameters=[icon["name"]],
auto_complete_text=f'{self.user_keyword} {icon["name"]}',
auto_complete_text=f'{self.user_keyword} {icon["name"]}'.replace('* ', ''),
)

def open_web(self, icon_name):
Expand Down

0 comments on commit 51c4b10

Please sign in to comment.