We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4565f79 commit bdb5863Copy full SHA for bdb5863
typescript/commands/quick_info.py
@@ -66,7 +66,7 @@ def handle_quick_info(self, quick_info_resp_dict, display_point):
66
self.template = Template(load_quickinfo_and_error_popup_template())
67
text_parts = { "error": error_html, "info_str": escape_html(info_str), "doc_str": escape_html(doc_str) }
68
html = self.template.substitute(text_parts)
69
- self.view.show_popup(html, flags=sublime.HIDE_ON_MOUSE_MOVE_AWAY, location=display_point, max_height=300, max_width=1500)
+ self.view.show_popup(html, flags=sublime.HIDE_ON_MOUSE_MOVE_AWAY, location=display_point, max_height=300, max_width=1024)
70
71
def get_error_text_html(self, pt):
72
client_info = cli.get_or_add_file(self.view.file_name())
0 commit comments