We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9664efa + 3665d7e commit 89c60ddCopy full SHA for 89c60dd
git-blame.py
@@ -123,13 +123,15 @@ def on_phantom_close(self, href):
123
124
if intent == "copy":
125
sublime.set_clipboard(sha)
126
+ sublime.status_message('Git SHA copied to clipboard')
127
elif intent == "show":
128
desc = self.get_commit(sha, self.view.file_name()).decode('utf-8')
129
buf = self.view.window().new_file()
130
buf.run_command('insert_commit_description', {'desc': desc})
-
131
- self.view.erase_phantoms('git-blame')
132
+ else:
+ self.view.erase_phantoms('git-blame')
133
134
135
136
def run(self, edit):
137
phantoms = []
0 commit comments