From cd408fd54002940945394814ecc6b53ce4bb98c1 Mon Sep 17 00:00:00 2001 From: Thomas Mosmant Date: Thu, 8 Mar 2018 15:28:17 +0100 Subject: [PATCH] mark @ as safe for username --- githubinator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/githubinator.py b/githubinator.py index 6b9f613..d84b6c9 100644 --- a/githubinator.py +++ b/githubinator.py @@ -112,7 +112,7 @@ def run(self, edit, copyonly=False, permalink=False, mode="blob", branch=None, o full_link = repo_link + "%s/%s%s/%s#%s" % \ (mode, target, new_git_path, file_name, lines) - full_link = quote(full_link, safe=':/#') + full_link = quote(full_link, safe=':/#@') sublime.set_clipboard(full_link) sublime.status_message("Copied %s to clipboard." % full_link)