mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-04 14:46:03 +00:00
Fix rendering of binary files
This commit is contained in:
parent
a65c807a4a
commit
b663160bc2
1 changed files with 2 additions and 1 deletions
|
|
@ -151,9 +151,10 @@ def binary_lines(path, other_path, columns, margin_size):
|
|||
yield filler + fl(other_path, added_format)
|
||||
elif other_path is None:
|
||||
filler = render_diff_line('', '', 'filler', margin_size, available_cols)
|
||||
yield fl(other_path, added_format) + filler
|
||||
yield fl(path, removed_format) + filler
|
||||
else:
|
||||
yield fl(path, removed_format) + fl(other_path, added_format)
|
||||
yield ''
|
||||
|
||||
|
||||
def split_to_size(line, width):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue