Skip to content

Commit

Permalink
Merge pull request #658 from idiot1347/master
Browse files Browse the repository at this point in the history
Fix find_implementation lsp-bridge-references--popup args
  • Loading branch information
manateelazycat authored Jun 22, 2023
2 parents 2656700 + f71f309 commit 8d19439
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/handler/find_implementation.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ class FindImplementation(Handler):
cancel_on_change = True

def process_request(self, position) -> dict:
self.pos = position
return dict(position=position)

def process_response(self, response: dict) -> None:
Expand Down Expand Up @@ -53,4 +54,4 @@ def process_response(self, response: dict) -> None:

linecache.clearcache() # clear line cache

eval_in_emacs("lsp-bridge-references--popup", references_content, references_counter)
eval_in_emacs("lsp-bridge-references--popup", references_content, references_counter, self.pos)

0 comments on commit 8d19439

Please sign in to comment.