Skip to content

Commit 54a721f

Browse files
committed
use popup instead of status message
1 parent c65a7b8 commit 54a721f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

file_diffs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def run_diff(self, a, b, from_file, to_file, **options):
9494
diffs = list(difflib.unified_diff(from_content, to_content, from_file, to_file))
9595

9696
if not diffs:
97-
sublime.status_message('No Difference')
97+
self.view.show_popup('<span style="font-size: 10pt">No Difference</span>')
9898
else:
9999
external_command = external_diff_tool or self.settings().get('cmd')
100100
open_in_sublime = self.settings().get('open_in_sublime', not external_command)

0 commit comments

Comments
 (0)