Skip to content

Commit

Permalink
chore(fmt): break very long line
Browse files Browse the repository at this point in the history
  • Loading branch information
gekoke committed May 19, 2024
1 parent cfb8acd commit d1d8570
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion magit-file-icons.el
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,16 @@

(el-patch-define-template
(defun magit-insert-untracked-files)
(insert (propertize (el-patch-swap file (format "%s %s" (if (file-directory-p file) (nerd-icons-icon-for-dir file) (nerd-icons-icon-for-file file)) file)) 'font-lock-face 'magit-filename) ?\n))
(insert
(propertize
(el-patch-swap file
(format "%s %s"
(if (file-directory-p file)
(nerd-icons-icon-for-dir file)
(nerd-icons-icon-for-file file))
file))
'font-lock-face 'magit-filename)
?\n))

(el-patch-define-template
(defun magit-diff-wash-diffstat)
Expand Down

0 comments on commit d1d8570

Please sign in to comment.