Skip to content

Commit 9e5f22a

Browse files
authored
add quick_info_full
1 parent 99cda4f commit 9e5f22a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

typescript/libs/service_proxy.py

+18
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,24 @@ def quick_info(self, path, location=Location(1, 1), on_completed=None):
294294
req_dict["seq"]
295295
)
296296

297+
def quick_info_full(self, path, location=Location(1, 1), on_completed=None):
298+
args = {"file": path, "line": location.line, "offset": location.offset}
299+
req_dict = self.create_req_dict("quickinfo-full", args)
300+
json_str = json_helpers.encode(req_dict)
301+
callback = on_completed or (lambda: None)
302+
if not IS_ST2:
303+
self.__comm.sendCmdAsync(
304+
json_str,
305+
callback,
306+
req_dict["seq"]
307+
)
308+
else:
309+
self.__comm.sendCmd(
310+
json_str,
311+
callback,
312+
req_dict["seq"]
313+
)
314+
297315
def save_to(self, path, alternatePath):
298316
args = {"file": path, "tmpfile": alternatePath}
299317
req_dict = self.create_req_dict("saveto", args)

0 commit comments

Comments
 (0)