-
Before, i use (require 'helm-icons)
(setq helm-icons-provider 'nerd-icons)
(helm-icons-enable) then, i try change to use builtin helm-x-icons.el when i found it added into latest helm. (require 'nerd-icons)
(custom-set-variables
'(helm-x-icons-provider 'nerd-icons)
) But, the file icons never changed when i run if use nerd-icons package, it should looks like following, checking screenshot: Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 5 replies
-
"Billy.Zheng" ***@***.***> writes:
1. ( ) text/plain (*) text/html
Before, i use helm-icons package, it work quite well for me.
(require 'helm-icons)
(setq helm-icons-provider 'nerd-icons)
(helm-icons-enable)
then, i try change to use builtin helm-x-icons.el when i found it added into latest helm.
(require 'nerd-icons)
(custom-set-variables
'(helm-x-icons-provider 'nerd-icons)
)
But, the file icons never changed when i run (helm-browse-project) use C-x C-d, checking screenshot
It is just not yet implemented in helm-ls-git, will be available soon.
…--
Thierry
|
Beta Was this translation helpful? Give feedback.
-
Icons in helm-ls-git are now available. |
Beta Was this translation helpful? Give feedback.
-
"Billy.Zheng" ***@***.***> writes:
1. ( ) text/plain (*) text/html
Sorry, updated to 4193cde, the icon still not available when run helm-ls-git
Do you have helm-ff-icon-mode enabled?
… image.png (view on web)
(require 'nerd-icons)
(custom-set-variables
'(helm-x-icons-provider 'nerd-icons)
)
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.*Message ID: ***@***.***>
--
Thierry
|
Beta Was this translation helpful? Give feedback.
-
"Billy.Zheng" ***@***.***> writes:
Thanks, how to enable it? i tried following config, not work.
(with-eval-after-load 'helm-x-icons
(customize-set-variable 'helm-x-icons-provider 'nerd-icons))
(with-eval-after-load 'helm-files
(helm-ff-icon-mode 1))
… —
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.*Message ID: ***@***.***>
--
Thierry
|
Beta Was this translation helpful? Give feedback.
-
"Billy.Zheng" ***@***.***> writes:
1. ( ) text/plain (*) text/html
Sorry, still not work, but if use helm-icons package work well.
Please, you know, as always starts from a minimal emacs config, there is
no reasons it doesn't work apart if you have conflicting packages or old
lisp files laying somewhere.
… ;; (require 'helm-icons)
;; (setq helm-icons-provider 'nerd-icons)
;; (helm-icons-enable)
(require 'nerd-icons)
(require 'helm-x-icons)
(with-eval-after-load 'helm-x-icons
(customize-set-variable 'helm-x-icons-provider 'nerd-icons))
(with-eval-after-load 'helm-files
(helm-ff-icon-mode 1))
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.*Message ID: ***@***.***>
--
Thierry
|
Beta Was this translation helpful? Give feedback.
-
"Billy.Zheng" ***@***.***> writes:
1. ( ) text/plain (*) text/html
Following is my process:
1. Run make in helm repo.
2. copy all el files into my own helm folder
3. add my config into helm-common_init.el
There are others my own init file available, but anyway, it work well until before icon issue.
╰──➤ $ find -name '*_init.el'
./plugins/helm-ag_init.el
./plugins/helm-etags-plus_init.el
./plugins/helm-git-grep_init.el
./plugins/helm-ls-git_init.el
./helm-bindings_init.el
./helm-grep_init.el
./helm_init.el
./helm-common_init.el
It really not work for me ... 😄
Start with a _real_ minimal config like ./emacs-helm.sh and describe
exactly what is not behaving as expected. As of now I don't know what I
can do for you, everything is working as expected here on Emacs-29 and
Emacs-31.0.50, I use helm-ls-git daily to develop Helm and others
packages...
… —
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.*Message ID: ***@***.***>
--
Thierry
|
Beta Was this translation helpful? Give feedback.
I tried use
./emacs-helm.sh
, but still not show icons when use helm-ls-git, then i found i never update helm-ls-git package ( it is a individual git package), after i updated it, icons is appear now.Thanks