mirror of
https://github.com/ryuslash/mode-icons.git
synced 2024-11-21 17:40:30 +01:00
Add a convert all png to xpm function
This commit is contained in:
parent
97655df673
commit
fa239e6ad8
1 changed files with 10 additions and 0 deletions
|
@ -971,6 +971,16 @@ When ICON-NAME is non-nil, return the mode-icons icon name."
|
|||
(nth 1 icon-spec)
|
||||
(mode-icons-get-icon-file (concat (nth 1 icon-spec) ".xpm"))))
|
||||
|
||||
(defun mode-icons--convert-all-png-icons-to-xpm ()
|
||||
"Convert all png icons to xpm files."
|
||||
(interactive)
|
||||
(setq mode-icons--convert-png-to-xpm (make-hash-table :test 'equal))
|
||||
(dolist (icon-spec mode-icons)
|
||||
(when (eq 'png (nth 2 icon-spec))
|
||||
(mode-icons--convert-png-to-xpm
|
||||
(mode-icons-get-icon-file (concat (nth 1 icon-spec) ".png"))
|
||||
(mode-icons-get-icon-file (concat (nth 1 icon-spec) ".xpm"))))))
|
||||
|
||||
(defun mode-icons--get-emoji-xpm-file (icon-spec &optional icon-name)
|
||||
"Get the emoji xpm file name from ICON-SPEC.
|
||||
This only supports emoji enclosed in a \":\" like :herb:.
|
||||
|
|
Loading…
Reference in a new issue