From b4d6d3bea8f0629f269571d3ddae0cec184ee88e Mon Sep 17 00:00:00 2001 From: Siegfried Ehret Date: Tue, 19 Jul 2022 03:16:35 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=81=20remove=20prefix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AutoLinkTitle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutoLinkTitle.py b/AutoLinkTitle.py index 4d63ccb..09791a2 100644 --- a/AutoLinkTitle.py +++ b/AutoLinkTitle.py @@ -5,7 +5,7 @@ from bs4 import BeautifulSoup class AutoLinkTitleCommand(sublime_plugin.WindowCommand): def run(self): - self.window.show_input_panel("Enter URL", "https://", self.on_done, None, None) + self.window.show_input_panel("Enter URL", "", self.on_done, None, None) def on_done(self, url): self.window.active_view().run_command("insert", {"characters": self.get_title(url)}) def get_title(self, url): -- 2.45.2